1.代码:
import { promptAction } from '@kit.ArkUI'@Entry
@Component
struct Page_textInput_onchange {// @State UI刷新测试 [注意:不是双向绑定]username: string = ''password: string = ''build() {Column({ space: 20 }) {TextInput({ placeholder: '账号信息', text: this.username })// 这个text是把页面的值绑定给username.width('80%').onChange((value) => {// 事件产生的UI更新,不会同步给数据,需要手动赋值// ①收集数据 this.usernamethis.username = valuepromptAction.showToast({message: this.username})})// Text(this.username)//这叫UI刷新TextInput({ placeholder: '密码', text: this.password }).width('80%').onChange((value)=>{ //把值传给passwordthis.password = value})Button('登录').width('80%').onClick(() => {// ②使用数据 this.usernameif (this.username === 'admin' && this.password === '123456') {promptAction.showDialog({message: '登录成功!'})} else {promptAction.showDialog({message: '登录失败!'})}})}.width('100%').height('100%').padding(20)}
}
2.效果:
3.优化