html部分js请求:页面完全没有数据显示,json数据显示已经加载,也没有报错。是哪里的问题呢?
1 回答
PIPIONE
TA贡献1829条经验 获得超9个赞
created:function(){
var _this = this
axios.get('js/data.json')
.then(function(response){
_this .lists=response.data.shoucangLists;
})
.catch(function(error){
console.log(error);
});
}
添加回答
举报
0/150
提交
取消