HarmonyOS 自定义弹窗如何与Component双向同步一些变量?

弹窗与组件如何双向绑定一些状态?

我在弹出弹窗的page里面定义了@Provide修饰的变量,在Dialog里面定义了@Consum修饰的同名变量,会直接报错如下:

Error message:@Component 'CommentDialog'[2578] missing @Provide property with name COMMENT_DIALOG_SHOW_REPLY.  
Fail to resolve @Consume(COMMENT_DIALOG_SHOW_REPLY).
HarmonyOS
2024-10-25 12:02:22
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

自定义弹窗和页面变量传递:方式一:

@CustomDialog  
struct CustomDialog01 {  
  @Link inputValue: string;  
  controller: CustomDialogController;  
  
  build() {  
    Column() {  
      Text('Change text')  
        .fontSize(20)  
        .margin({ top: 10, bottom: 10 })  
      TextInput({ placeholder: '', text: this.inputValue })  
        .height(60)  
        .width('90%')  
        .onChange((value: string) => {  
          this.inputValue = value;  
        })  
    }  
  }  
}  
  
@Entry  
@Component  
struct DialogDemo01 {  
  @State inputValue: string = 'click me';  
  dialogController: CustomDialogController = new CustomDialogController({  
    builder: CustomDialog01({  
      inputValue: $inputValue  
    })  
  })  
  
  build() {  
    Column() {  
      Button(this.inputValue)  
        .onClick(() => {  
          this.dialogController.open();  
        })  
        .backgroundColor(0x317aff)  
    }  
    .width('100%')  
    .margin({ top: 5 })  
  }  
}

方式二:在初始化弹窗时,传递一个方法给自定义弹窗,在自定义弹窗中触发该方法,弹窗中变量作为方法的参数。

@CustomDialog  
struct CustomDialog02 {  
  private inputValue: string = '';  
  changeInputValue: (val: string) => void = () => {  
  };  
  ;  
  controller: CustomDialogController;  
  
  build() {  
    Column() {  
      Text('Change text')  
        .fontSize(20)  
        .margin({ top: 10, bottom: 10 })  
      TextInput({ placeholder: '', text: this.inputValue })  
        .height(60)  
        .width('90%')  
        .onChange((value: string) => {  
          this.changeInputValue(value);  
        })  
    }  
  }  
}  
  
@Entry  
@Component  
struct DialogDemo02 {  
  @State inputValue: string = 'click me';  
  dialogController: CustomDialogController = new CustomDialogController({  
    builder: CustomDialog02({  
      inputValue: this.inputValue,  
      changeInputValue: (val: string) => {  
        this.inputValue = val;  
      }  
    })  
  })  
  
  build() {  
    Column() {  
      Button(this.inputValue)  
        .onClick(() => {  
          this.dialogController.open();  
        })  
        .backgroundColor(0x317aff)  
    }  
    .width('100%')  
    .margin({ top: 5 })  
  }  
}

方式三:使用AppStorage或LocalStorage方式管理页面状态,实现自定义弹窗和页面之间状态的共享。

let storage = LocalStorage.getShared();  
@CustomDialog  
struct CustomDialog03 {  
  @LocalStorageLink('inputVal') inputValue: string = '';  
  controller: CustomDialogController;  
  
  build() {  
    Column() {  
      Text('Change text')  
        .fontSize(20)  
        .margin({ top: 10, bottom: 10 })  
      TextInput({ placeholder: '', text: this.inputValue })  
        .height(60)  
        .width('90%')  
        .onChange((value: string) => {  
          this.inputValue = value;  
        })  
    }  
  }  
}  
  
@Entry(storage)  
@Component  
struct DialogDemo03 {  
  @LocalStorageLink('inputVal') inputValue: string = 'click me';  
  dialogController: CustomDialogController = new CustomDialogController({  
    builder: CustomDialog03()  
  });  
  
  build() {  
    Column() {  
      Button(this.inputValue)  
        .onClick(() => {  
          this.dialogController.open();  
        })  
        .backgroundColor(0x317aff)  
    }  
    .width('100%')  
    .margin({ top: 5 })  
  }  
}
分享
微博
QQ
微信
回复
2024-10-25 15:20:03
相关问题
自定义弹窗中的变量如何传递给页面
2496浏览 • 1回复 待解决
如何自定义Component 属性
14881浏览 • 3回复 待解决
自定义弹窗自定义转场动画
917浏览 • 1回复 待解决
HarmonyOS 自定义弹窗选择
267浏览 • 1回复 待解决
HarmonyOS 如何制作自定义加载弹窗
251浏览 • 1回复 待解决
如何自定义弹窗中再次弹窗
2142浏览 • 1回复 待解决
自定义弹窗如何嵌套使用
1435浏览 • 1回复 待解决
HarmonyOS 全局自定义弹窗demo
218浏览 • 1回复 待解决
HarmonyOS 自定义弹窗的问题
517浏览 • 1回复 待解决
HarmonyOS 自定义弹窗CustomDialog问题
461浏览 • 1回复 待解决
如何快速开发出自定义弹窗
288浏览 • 1回复 待解决
如何设置自定义弹窗位置
1970浏览 • 1回复 待解决
HarmonyOS 自定义弹窗 (CustomDialog)问题
205浏览 • 1回复 待解决
使用自定义弹窗实现分享弹窗
437浏览 • 1回复 待解决
自定义弹窗如何步封装
321浏览 • 1回复 待解决