Nuxt Generate Dynamic Routes Path

五迷三道 提交于 2020-01-23 03:02:07

问题


I'm creating a site with wp-api. All my pages are inside: - pages -- _slug If my page slug are site.com/about

- pages -- about Nuxt will generate html like this. But... If my path are site.com/company/about

Can I create this routes?

PS: I'm using wordpress api for that. So if my pages has parent pages, the path are: site.com/parent/child


回答1:


You can use the routes key in nuxt.config.js to do this.

The docs are here: https://nuxtjs.org/api/configuration-generate/#routes

In a nutshell, you can write a function in nuxt.config.js:generate.routes which generates the pages for you.

Here is an example: nuxt.config.js:

const axios = require('axios')

module.exports = {
  ...
  generate: {
    routes: function () {
      return axios.get('https://your-wordpress-api/')
      .then((res) => {
        return res.data.map((page) => {
          let route = '/whatever/you/like/' + page.slug
        })
      })
    }
  }
}

Some tips:

  • You can add the payload to speed things up a little: https://nuxtjs.org/api/configuration-generate/#speeding-up-dynamic-route-generation-with-code-payload-code-
  • If you need to make a number of requests, use axios.spread


来源:https://stackoverflow.com/questions/49057409/nuxt-generate-dynamic-routes-path

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!