微信web开发问题记录

问题一、微信浏览器中无法使用reload重载文档【VUE框架】

问题分析:

  • 微信不支持location.reload()方法,在微信浏览器中会失效
  • Vue中的路由跳转是类似于ajax局部刷新,因此使用location.href=‘xxx+时间戳’ 这种方法时,页面不会重载
  • Vue自带的this.$router.go(0)无效
  • history.go(0)无效

vue框架开发解决:

在App.vue中,先在provide中注册一个用于页面重载的方法

<template>
  <div class="app-wrapper">
    <router-view v-if="isRouterAlive" />
  </div>
</template>

<script>
export default {
  name: 'app',
  provide () {
    return {
      appReload: this.reload // 通过provider来提供变量
    }
  },
  data () {
    return {
      isRouterAlive: true // 解决微信端页面刷新问题
    }
  },
  methods: {
    // 实现重载
    reload () {
      this.isRouterAlive = false
      this.$nextTick(() => {
        this.isRouterAlive = true
      })
    }
  }
}
</script>

然后在子组件中通过inject来注入变量,直接调用reload就可以了

<template>
  <div>
     <button @click="handlerReload">刷新</button>
  </div>
</template>

<script>
  export default {
    inject: ['appReload'], // 通过inject来注入变量
    methods: {
        handlerReload () {
            this.appReload()
        }
    }
  }
</script>

扩展知识:

provider/inject:简单的来说就是在父组件中通过provider来提供变量,然后在子组件中通过inject来注入变量。
这对选项需要一起使用,以允许一个祖先组件向其所有子孙后代注入一个依赖,不论组件层次有多深,并在起上下游关系成立的时间里始终生效。

参考资料:https://blog.csdn.net/Lucky_Q/article/details/89097423

 

转载于:https://www.cnblogs.com/victorlyw/p/11169312.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值