我想了解JQuery GET
方法和Angular JS $http GET
方法之間的區別。我不確定這兩種方法是否可以根據同步和異步條款進行區分。任何人都可以解釋下面這些情況。
角JS代碼:
// Simple GET request example:
$http({
method: 'GET',
url: '/someUrl'
}).then(function successCallback(response) {
// this callback will be called asynchronously
// when the response is available
}, function errorCallback(response) {
// called asynchronously if an error occurs
// or server returns response with an error status.
});
jQuery代碼:
$("button").click(function(){
$.get("demo_test.asp", function(data, status){
alert("Data: " + data + "\nStatus: " + status);
});
});
我的問題是 - 更可靠和易於使用的實施?你建議哪一個?
你到底需要知道什麼?這個問題不清楚,請詳細說明。 jQuery版本似乎沒有錯誤處理程序(但可以添加一個 - https://api.jquery.com/jquery.get/) - 順便說一句,它們都是異步調用 – ochi
哦,我明白了!兩者都是異步調用。所以你建議我根據表現基準使用哪一個。 @ochi – Chip