uni-app保存数据到本地

2020-11-06  本文已影响0人  undefined汪少

//存

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);

    }

});

上一篇下一篇

猜你喜欢

热点阅读