📜  ajax 中的 async false - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:40.082000             🧑  作者: Mango

代码示例2
var phpData = (function get_php_data() {
  var php_data;
  $.ajax({
    url: "http://somesite/v1/api/get_php_data",
    async: false, 
    //very important: else php_data will be returned even before we get Json from the url
    dataType: 'json',
    success: function (json) {
      php_data = json;
    }
  });
  return php_data;
})();