在app.vue文件里面是这么写的
<script>
export default {
data(){
return{
num:1
}
},
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
let _this=this
console.log('App Show')
uni.setStorageSync('storage_key', _this.num);
},
onHide: function() {
console.log('App Hide')
this.num++
}
}
</script>
index.vue是这样的
<template>
<view class="page">
<text>{{txt}}</text>
</view>
</template>
<script>
export default {
data () {
return {
txt:''
}
},
onShow(){
this.txt=uni.getStorageSync('storage_key');
},
methods: {
},
}
</script>
<style>
</style>
在安卓模拟器和真机上都不能触发方法,是什么情况?
0 个回复