Angular中的安全请求

时间:2016-02-10 11:51:05

标签: angularjs

我正在学习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发送,不需要吗?

从数据发送的最安全方式是什么?

0 个答案:

没有答案