鸿蒙开发中的一些小问题

发布时间:2023年12月27日

Q1:This custom component must have a ‘build’ function.

源码

@Component
export default struct ProgressEditPanel {
}

问题
源码中没有出现build方法
解决

@Component
export default struct ProgressEditPanel {
build() {}
}

Q2:page_title is not translated into en_US(American English)

提示:page_title is not translated into en_US(American English)
修改:三个string.json文件都需要出现相同的name和value才行,如果根据提示进行修改
在这里插入图片描述

Q3:Module ‘“…/CustomComponent/CustomButton”’ declares ‘CustomButton’ locally, but it is not exported.

源码

struct CustomButton {}

问题
没有将结构跑出来
解决

export struct CustomButton {}
文章来源:https://blog.csdn.net/weixin_46107120/article/details/135233075
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。