HarmonyOS 输入框不显示内容

PageA 里面有组件B 组件B使用TextInput,第一次进来时候不显示内容,输入才显示

HarmonyOS
3h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

参考以下示例代码引用TextInput自定义组件

@Component
struct TextInputComponent {
  @Link text: string
  controller: TextInputController = new TextInputController()

  build() {
    Column({ space: 20 }) {
      TextInput({
        text: this.text,
        placeholder: '请输入手机号',
        controller:this.controller
      })
        .placeholderColor(Color.Gray)
        .placeholderFont({ size: 14, weight: 400 })
        .width(300)
        .type(InputType.Number)
        .borderWidth(0)
        .backgroundColor(Color.Transparent)
        .fontSize(16)
        .maxLength(11)
        .maxLines(1)
        .padding(5)
        .inputFilter("[0-9]")
        .onChange((value) => {
          this.text = value
        })
    }
    .width('100%')
    .justifyContent(FlexAlign.Center)
  }
}

@Entry
@Component
struct ParentComponent {
  @State param : string = '13670187134'
  build() {
    Column() {
      TextInputComponent({text:this.param});
      Divider().height(10)
      Text('输入框的内容:'+this.param)
    }
  }
}
分享
微博
QQ
微信
回复
1h前
相关问题
如何清空文本输入框内容
783浏览 • 1回复 待解决
HarmonyOS 输入框无法对齐
374浏览 • 1回复 待解决
HarmonyOS 监听输入框删除键
181浏览 • 1回复 待解决
js如何清空一个input 输入框内容
7733浏览 • 1回复 待解决
HarmonyOS 自定义键盘不能顶起输入框
350浏览 • 1回复 待解决
HarmonyOS 自定义键盘输入框焦点问题
13浏览 • 0回复 待解决