uniapp 手机记住密码
时间: 2023-10-03 21:10:05 浏览: 334
在uniapp中实现手机记住密码的方法是通过使用uni.setStorageSync()方法将用户名和密码存储在本地缓存中,然后在钩子函数中使用uni.getStorageSync()方法获取存储的用户名和密码,并在登录界面自动填充。如果没有存储的用户名和密码,则需要手动输入。以下是实现手机记住密码的示例代码:
```javascript
export default {
data() {
return {
info: {
username: '',
passwd: ''
},
remember: true
}
},
mounted() {
const username = uni.getStorageSync('username');
const passwd = uni.getStorageSync('passwd');
let th = this.info;
if (username && passwd) {
this.navigateto();
th.username = username;
th.passwd = passwd;
this.remember = true;
} else {
th.username = '';
th.passwd = '';
this.remember = false;
}
}
}
```
阅读全文