//存
uni.setStorage({
key: 'storage_key',
data: {
保存的内容
token:this.token
},
success: function () {
// console.log('success');
}
});
//取
uni.getStorage({
key: 'storage_key',
success: function (res) {
取的内容
console.log(res.data);
}
});
//存
uni.setStorage({
key: 'storage_key',
data: {
保存的内容
token:this.token
},
success: function () {
// console.log('success');
}
});
//取
uni.getStorage({
key: 'storage_key',
success: function (res) {
取的内容
console.log(res.data);
}
});
本文标题:uni-app保存数据到本地
本文链接:https://www.haomeiwen.com/subject/octxbktx.html
网友评论