javascript nuxtjs asyncData用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript nuxtjs asyncData用法相关的知识,希望对你有一定的参考价值。
async asyncData ({ params, query }) {
return api.getEmployeeListByPage({offset: 0, limit: 20})
.then(res => {
return {employee: res.data}
})
.catch(err => console.log(err))
const [config, {records, totalCount}] = await Promise.all([
api.loadEmployeePageConfig({configKey: 'employeeConfig'})
.then(res => res.data)
.catch(err => console.log(err)),
api.getEmployeeListByPage({offset: 0, setValue.limit})
.then(res => res.data)
.catch(err => console.log(err))
])
return {config, records, totalCount}
}
以上是关于javascript nuxtjs asyncData用法的主要内容,如果未能解决你的问题,请参考以下文章
javascript nuxtjs asyncData用法
将 LiveChatInc 小部件与 NuxtJs 集成
NuxtJS 可以生成纯 HTML 吗?
NuxtJS项目——开发工具
nuxtJs中直接使用自带的@nuxtjs/axios
“Nuxtjs SPA 模式”和“没有 Nuxtjs 的 Vuejs”的区别