※前提条件:vue3 的uniapp开发
let items = JSON.stringify(数组或者对象); uni.setStorageSync("wqzdy" , items);
取出
var data = uni.getStorageSync("wqzdy" ); var items = JSON.parse(data)
let items = JSON.stringify(item) uni.navigateTo({ url: '../order/refundMoney/refundMoney?item=' + items })
取出
onLoad(e) { this.item = JSON.parse(e.item) },
Comment: