Nuxt生成动态路由路径 [英] Nuxt Generate Dynamic Routes Path

查看:1289
本文介绍了Nuxt生成动态路由路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用wp-api创建一个网站.我所有的页面都在里面: - pages -- _slug 如果我的网页碰巧是site.com/about

- pages -- about Nuxt将生成这样的html.但是...如果我的路径是site.com/company/about

我可以创建此路线吗?

PS:我正在为此使用wordpress api.因此,如果我的页面有父页面,则路径为:site.com/parent/child

解决方案

您可以使用nuxt.config.js中的routes键执行此操作.

文档在这里: https://nuxtjs.org/api/configuration-generate/#routes

简而言之,您可以在nuxt.config.js:generate.routes中编写一个为您生成页面的函数.

这里是一个示例: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
        })
      })
    }
  }
}

一些提示:

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:

这篇关于Nuxt生成动态路由路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆