vue2.0使用axios获取不到数据

发布于 2022-09-05 10:21:10 字数 407 浏览 7 评论 0

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)
    })
}

为什么获取不到数据呢?也没有报错...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无语# 2022-09-12 10:21:10
created: function () {
    this.$http.get('http://localhost:8080/static/db.json').then(res => {
      this.productList = res.data.productList
      this.newsList = res.data.getNewsList
    }).catch(err=>{
        console.log(err)
    })
}

试试看,不确定是不是这里的问题,要this.$http.get().then().catch()这种写法吧

青衫儰鉨ミ守葔 2022-09-12 10:21:10

解决了,不小心把Vue.use(VueRouter)给删了,所以页面不显示,我的天。。。

风追烟花雨 2022-09-12 10:21:10

then()方法里面的this指向已经变了,试试下面的把this先暂存起来,再在then()方法里面使用。
created: function () {

var _this = this;
this.$http.get('http://localhost:8080/static/db.json')
.then(res => {
  _this.productList = res.data.productList
  _this.newsList = res.data.getNewsList
}).catch(err=>{
    console.log(err)
})

}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文