0
我在我的Vue Webpack Cli項目中使用prerender-spa-plugin。像從文檔我正在註冊的插件在webpack.prod.conf.js這樣在Vue Webpack Cli中獲取通過axios的路由列表
...
plugins: [
...
new PrerenderSpaPlugin(
path.join(__dirname, '../dist'),
['/', '/about', '/contact'],
{
captureAfterTime: 5000
}
)
]
我想知道是否有可能通過愛可信調用來獲取路線數組列表。 我嘗試沒有成功如下:
var routes = axios.get('http://myapi.com/api').then(function (response) {
return response.map(function (response) {
return '/base/' + response.slug
})
})
plugins: [
...
new PrerenderSpaPlugin(
path.join(__dirname, '../dist'),
routes,
{
captureAfterTime: 5000
}
)
]
由於我的JavaScript知識貧乏,我不能夠解決這個問題。謝謝任何提示。
問候