jQuery的$ http.post與$ .post的區別。
$http.post() vs $.post()
它是$ http.post()在內部使用jQuery的$ .ajax或使其自己的XMLHttpRequest?
我面臨的問題Angular $http.post method not working for asp.net web api
jQuery的$ http.post與$ .post的區別。
$http.post() vs $.post()
它是$ http.post()在內部使用jQuery的$ .ajax或使其自己的XMLHttpRequest?
我面臨的問題Angular $http.post method not working for asp.net web api
他們正在做同樣的工作,在語法只是一些差異。他們會調用底層XMLHttpRequest
向服務器發送請求。
$http.post
不會調用$.post
,Angular不依賴於jQuery。
$http.post()
自己的XMLHttpRequest就像jQuery.post()
一樣。 這兩者之間的唯一不同的是,它們的默認請求content-type
同時使請求,
jQuery.post()
使用application/x-www-form-urlencoded
角$http.post()
使用application/json