为什么承诺不能正常工作然后功能不解雇?

时间:2017-06-07 16:51:34

标签: javascript jquery

您能否告诉我为什么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)
  })
})

0 个答案:

没有答案