main.js
import Axios from 'axios'
Vue.prototype.$http = Axios
index.vue
created: function () {
this.$http.get('http://localhost:8080/static/db.json')
.then(res => {
this.productList = res.data.productList
this.newsList = res.data.getNewsList
}, err => {
console.log(err)
})
}
为什么获取不到数据呢?也没有报错...
试试看,不确定是不是这里的问题,要
this.$http.get().then().catch()
这种写法吧