我正在开发一个 Vuejs 应用程序。基于 Quasar 框架,在 src/components/Hello.vue 我有一个加载 json 文件的功能
axios.get('../assets/json/ar/myfile.json')
.then(response => {
// JSON responses are automatically parsed.
console.log(response)
})
.catch(e => {
this.errors.push(e)
})
它返回错误,GET http://localhost:8080/assets/json/ar/ch78.json 404 (Not Found)
所以我的问题是如何从 src/assets 文件夹中获取文件?
axios.get('../assets/json/ar/myfile.json')
这条线需要更正