|
常规写法。直接崩溃,调试的是http请求200,但是request header里报Provisional headers are shown
求指导。。。
loadData(){
fetch.fetch({
url:"http://www.wanandroid.com/article/list/0/json",
success:function(data){
// console.debug(`获取成功:${JSON.stringify(data)}`)
this.alldata = data.code
},
fail:function(data,code){
// console.debug(`网络错误:$code`)
this.alldata = code
}
})
} |
|