vue2.0 beforeRouteEnter里 怎么调两个接口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue2.0 beforeRouteEnter里 怎么调两个接口相关的知识,希望对你有一定的参考价值。

参考技术A beforeRouteEnter (to, from, next)
main._base(
methodName: 'QueryProductInfo',
productId: to.params.id
).then(resp =>
next(vm =>
vm.product = resp.data.product
vm.shop = resp.data.shop
console.log(vm.product)
console.log(vm.shop)
)
)
//如果只写一个是可以调用的
main._base(
methodName: 'QueryProductReview',
type: '0',
index: '0',
count: '2',
productId: to.params.id
).then(resp =>
next(vm =>
vm.evalData = resp.data
console.log(vm.evalData)
)
)

Vue beforeRouteEnter 的next执行时机

背景

今天在用vue实现界面的时候,想在beforeRouteEnter钩子函数中去获取数据,然后通过next方法设置到跳转页面的实例中,结果发现数据一直没办法在界面渲染的时候赋值,苦思不得其解,遂google之,终寻原因,记录之。

注意

beforeRouteEnter (to, from, next) {
  console.log(this);  //undefined,不能用this来获取vue实例
  console.log(‘组件路由钩子:beforeRouteEnter‘);
  next(vm => {
    console.log(vm);  //vm为vue的实例
    console.log(‘组件路由钩子beforeRouteEnter的next‘);
  });
}

next(vm=>{console.log(‘next’) }) 
这个里面的代码很晚执行,执行时机在组件mounted周期之后


以上是关于vue2.0 beforeRouteEnter里 怎么调两个接口的主要内容,如果未能解决你的问题,请参考以下文章

vue2.0项目实战生命周期和钩子函数详解

Vue2.0笔记——组件2

vue2.0项目结构和打包发布

vue2.0项目结构和打包发布

Vue2.0 的漫长学习ing-2-5

vue2.0 实现全选和全不选