Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

问一个vue调试问题

$
0
0

最近无事想学学vue,然后就看到了 @zhixuanziben 这位写的狗眼电影,看了下代码 其中有这么一段 这个段代码是在.vuescript标签里

 mounted: function () {
    this.$http.jsonp('https://api.douban.com/v2/movie/in_theaters?start=0&count=1')
        .then(function (response) {
          console.log(response) //这里我想debug输出一下,为什么并没有输出呢,我是用 npm run dev 命令运行的,控制台里并没有log输出啊
          this.guodu = false
          this.in_theaters_data = response
          this.in_theaters_data_body = response.body
          this.in_theaters_data_body_subjects = response.body.subjects
        })
        .catch(function (response) {
          console.log(response)
        })
  },

Viewing all articles
Browse latest Browse all 14821

Trending Articles