在尝试加载json文件时,我一直找不到404。最初,我在scr/static/
中保存了文件,然后将其移至名为data
的文件夹中目录的根目录中。我尝试了很多事情,没有运气。不知道我是否不能使用mounted
或什么,但是我发现的所有示例似乎都在正确地使用。
<template>
<div>
</div>
</template>
<script>
import axios from 'axios'
const url = 'http://localhost:8080/data/releases.json';
export default {
name: 'Releases',
data () {
return {
releases: []
}
},
mounted () {
axios.get(url).then(response => {
console.log(response.data)
})
.catch(e => {
console.log(e)
})
}
}
</script>
<style scoped>
</style>