在鸿蒙4.0 API 9开发环境下,下面四种代码老是报错,请高手指点,

wx65d5d70589683
发布于 2024-2-23 13:24
浏览
0收藏

下面四种代码都是鸿蒙在4.0 API 9开发环境下,用于获取TextInput控件的输入值,可是都不起作用,请大侠指点!!
难道下面四种代码只能运行在鸿蒙4.0 API 6环境下吗?只能用在index.js文件中吗?在index.ets这个文件中就不行吗?
代码一:
TXTvalue() {
this.txtvalue = this.$element(‘TextInput’).value
}
代码二:
getTXT(){
let input1 = document.getElementById(‘TextInput’);
this.title = input1.Content;//input1.value;
console.log(this.input1);
}
代码三:

input({ value:inputValue }){
this.input = inputValue;
console.log('inputValue = ’ + inputValue);
}

代码四:
getNewTodo(e){
this.inputTodo = e.value;
console.log(this.inputTodo);
}

收藏
回复
举报
回复
    相关推荐