切换到该页面时,数据加载不出来,什么原因?npm run dev之后的窗口:页面代码如下:<template> <div class="container"> <ul> <li v-for='product in products'> {{product.url}} </li> </ul> </div></template><script>export default{ data(){ return{ products:[] } }, mounted:function(){ this.$http.jsonp('http://gank.io/api/data/%E7%A6%8F%E5%88%A9/10/1',{},{ headers:{}, emulateJSON:true }).then(function(response){ this.products=response.data.results; },function(response){ console.log(response); }); }}</script>
添加回答
举报
0/150
提交
取消