2***@qq.com
2***@qq.com
  • 发布:2019-04-10 12:37
  • 更新:2019-04-18 04:45
  • 阅读:1030

从A页面进入B页面, 再从B页面点击右上角回退到A页面 A页面输入框的值还在 生命周期也没有执行

分类:uni-app

从A页面进入B页面, 再从B页面点击右上角回退到A页面 A页面输入框的值还在 生命周期也没有执行 这是为什么呀? 我想要A页面重置怎么做

2019-04-10 12:37 负责人:无 分享
已邀请:
2***@qq.com

2***@qq.com (作者)

<template>  
    <view class="content">  
        <!-- <myHeader></myHeader> -->  
        <image class="logo" src="/static/logo.png" @tap="goJump"></image>  
        <view>  
            <text class="title">{{title}}</text>  
        </view>  
    </view>  
</template>  

<script>  
import myHeader from '../../components/my-header.vue';  
export default {  
    data() {  
        return {  
            title: 'Hello'  
        }  
    },  
    components:{  
        myHeader  
    },  
    onLoad() {  
        console.log(11)  
        this.title = 'nihao';  
    },  
    methods: {  
        goJump(){  
            uni.navigateTo({  
                url: '../list/list'  
            });  
        }  
    },  
    computed:{  
        searchText(){  
            return this.$store.state.searchText;  
        }  
    }  
}  
</script>  

<style>  
    .content {  
        text-align: center;  
        height: 400upx;  
    }  
    .logo{  
        height: 200upx;  
        width: 200upx;  
        margin-top: 200upx;  
    }  
    .title {  
        font-size: 36upx;  
        color: #8f8f94;  
    }  
</style>  

B页面  
<template>  
    <view>  
        <view>{{searchText}}</view>  
        <view class="" @tap="goFile">  
            <view>1</view>  
            <view>1</view>  
            <view>1</view>  
        </view>  
    </view>  
</template>  

<script>  
    export default {  
        data() {  
            return {  

            };  
        },  
        onLoad() {  
        },  
        methods:{  
            setList(){  

            },  
            goFile(){  
                uni.navigateTo({  
                    url: '../file/file'  
                });  
            }  
        },  
        computed:{  
            searchText(){  
                return this.$store.state.searchText;  
            }  
        }  
    }  
</script>  

<style>  

</style>  
DCloud_heavensoft

DCloud_heavensoft

a页面onShow会触发

该问题目前已经被锁定, 无法添加新回复