以下客户端代码抛出错误"访问'参数'严格模式下不允许使用函数的属性"。
$http({
method: 'POST',
url: window.apiUrl,
headers: { 'Content-Type': 'application/json' },
data: result,
}).then(function (res) {
debugger;
console.log('succes !', res.data);
$scope.ResetData();
window.alert("Successfully created");
}).catch(function (err) {
debugger;
console.log('error...', err);
});
但是,如果我添加以下参数,它可以正常工作
`headers: { 'Content-Type': 'application/x-www-form-urlencoded' },`
但它将整个页面发送到api,而不是仅发送json数据
它是否与ACAS propblem有关,因为我的api和网站是相同的url,具有不同的端口。有什么建议或帮助吗?