我正在使用保险丝模板并使用$http
访问我的网络服务,如果我使用method: 'POST'
而没有发送任何数据,但是每当我添加一些数据时,我的工作正常:{{{ 1}}并向我的网络服务发送请求,将方法类型data: {text:'test'}
更改为POST
。
我的代码:
OPTIONS
当我在浏览器网络中检查其显示方法类型$scope.submit = function(){
$http({
method: 'POST',
url: 'http://www.example.com/api-link',
data: {test: 'hello'},
header: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}).then(function(result){
console.log(result);
});
}
时。任何人都可以告诉我的代码有什么问题吗?
由于