search组件的使用
whaaaat
发布于 2024-4-22 16:48
浏览
1收藏
使用鸿蒙的Search组件,在输入搜索内容后,点击searchButton,完成搜查功能。
this.getOne函数中填写搜索的具体过程。
Search({ placeholder: "请输入品名" })
.width(180)
.searchButton("搜索").onSubmit((value: string) => {
if (value == "") {
AlertDialog.show({
message: "请输入内容"
})
} else {
this.getOne(value);
}
})
分类
标签
赞
1
收藏 1
回复
相关推荐
1
11