HarmonyOS this.controller.close 直接崩溃

@CustomDialog
export struct ViewBoardCustomDialog {
  controller: CustomDialogController = new CustomDialogController({ builder: ViewBoardCustomDialog() })
  onStart: (isReadOnly: boolean) => void = (isReadOnly: boolean) => {

  }

  build() {
    Column() {
      Button("创建只读白板").onClick(e => {
        this.onStart(true);
      }).margin({ top: 10, bottom: 10 })
      Button("创建读写白板").onClick(e => {
        this.onStart(false);
      }).margin({ top: 10, bottom: 10 })
    }

  }
}
HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
fox280

示例参考如下:

@CustomDialog
struct CustomDialogExample {
  controller?: CustomDialogController
  cancel: () => void = () => {
  }
  confirm: () => void = () => {
  }
  build() {
    Column() {
      Text('可展示在主窗口外的弹窗')
        .fontSize(30)
        .height(100)
      Button('点我关闭弹窗')
        .onClick(() => {
          if (this.controller != undefined) {
            this.controller.close()
            console.log('关闭成功')
          }
          else{
            console.log('关闭失败')
          }
        })
        .margin(20)
    }
  }
}
@Entry
@Component
struct CustomDialogUser {
  dialogController: CustomDialogController | null = new CustomDialogController({
    builder: CustomDialogExample({
      cancel: ()=> { this.onCancel() },
      confirm: ()=> { this.onAccept() }
    }),
    cancel: this.existApp,
    autoCancel: true,
    alignment: DialogAlignment.Center,
    offset: { dx: 0, dy: -20 },
    gridCount: 4,
    showInSubWindow: true,
    isModal: true,
    customStyle: false,
    cornerRadius: 10,
  })
  // 在自定义组件即将析构销毁时将dialogControlle置空
  aboutToDisappear() {
    this.dialogController = null // 将dialogController置空
  }

  onCancel() {
    console.info('Callback when the first button is clicked')
  }

  onAccept() {
    console.info('Callback when the second button is clicked')
  }

  existApp() {
    console.info('Click the callback in the blank area')
  }

  build() {
    Column() {
      Button('click me')
        .onClick(() => {
          if (this.dialogController != null) {
            this.dialogController.open()
          }
        }).backgroundColor(0x317aff)
    }.width('100%').margin({ top: 5 })
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
程序打开直接崩溃了,如何定位问题
2982浏览 • 1回复 待解决
HarmonyOS RichEditor设置controller
41浏览 • 1回复 待解决
TCPSocket on('close')错误码
483浏览 • 1回复 待解决
什么是控制器controller
876浏览 • 1回复 待解决
HarmonyOS如何自定义组件的Controller
391浏览 • 1回复 待解决
HarmonyOS使用HashMap崩溃
420浏览 • 1回复 待解决
HarmonyOS libuv.so崩溃
317浏览 • 1回复 待解决
HarmonyOS API调用崩溃问题
467浏览 • 1回复 待解决
HarmonyOS List.clear崩溃
48浏览 • 1回复 待解决
HarmonyOS 应用崩溃日志问题
393浏览 • 1回复 待解决
HarmonyOS线程池使用崩溃
464浏览 • 1回复 待解决
HarmonyOS 关于质量-崩溃服务
24浏览 • 1回复 待解决
HarmonyOS 运行Flutter项目崩溃
45浏览 • 1回复 待解决
HarmonyOS 崩溃收集问题咨询
516浏览 • 1回复 待解决