您能否告诉我为什么then
功能无法调用?我尝试从json
获取file
数据
这是我的代码
https://plnkr.co/edit/3APaLWC7QkNuvxHirL14?p=preview
function abc(){
return check();
}
function check(){
return $.ajax({
url:'data.json',
success: function (json) {
return json;
}
})
}
$(function(){
abc().then(function(d){
console.log(d)
})
})