gpt4 book ai didi

javascript - angularjs中如何调用sync和async?

转载 作者:行者123 更新时间:2023-11-29 21:52:59 24 4
gpt4 key购买 nike

<分区>

我想在 angularjs 中自定义同步和异步,如下所示。

  var async = function (url, data, action, callback) {   
$.ajax({
url: global.baseURL + url,
type: action,
data: data,
async: true,//or false
success: function (data) {
if (data !== undefined && data !== null) {
callback(data);
}
}
});
};

在 AngularJs 中看起来像这样的代码

 $http({ method: 'GET', url: baseURL + 'Api/MobilePref/Get/'+uid
})
.success(function (data, status, headers, config) {
})
.error(function (data, status, headers, config) {
//TODO: handl error.
});

谁能告诉我如何在 angularjs 中设置同步和异步调用?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com