gpt4 book ai didi

javascript - Ionic 与 $http 并被触发两次

转载 作者:行者123 更新时间:2023-11-28 06:16:06 31 4
gpt4 key购买 nike

$scope.login = function(email,password){
$http({
method: 'POST',
url: 'http://example.com/login',
headers: {
'owner': $rootScope.secret
},
data: {email:email, password:password }
}).then(function successCallback(response) {
console.log(response.data)
}, function errorCallback(response) {
console.log(response.data)
});
}

但是在我的网络选项卡中我看到 2 个请求,其中一个是由 ionic 发出的:

enter image description here

第二个是我的 POST 请求,我想知道为什么上面有一个 OPTION 方法。

最佳答案

这是 CORS 问题。
您可以执行以下操作:

  • 使用 --disable-web-security 启动 Chrome。

  • 建立代理服务器来转发调用。

  • 将此 header 添加到您的通话中:

    {'Content-Type': 'application/x-www-form-urlencoded'}

关于javascript - Ionic 与 $http 并被触发两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35953689/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com