我正在学习Angular,我正在使用第三方酒店Api进行实时预订。
Api表示在POST正文中发送所有请求值为application / x-www-form-urlencoded
Angular form
我应该使用$httpParamSerializer
还是
$http.post(url, data,{headers: {'Content-Type': 'application/x-www-form-urlencoded'}})
.success(function(response) {
// your code...
});
我还读过,标准的$ http请求只会将其作为默认json
发送,不需要吗?
从数据发送的最安全方式是什么?