我正在使用“reqwest”进行休息呼叫服务。我对拨打电话时发生的错误感兴趣。这是我的简单示例
<!doctype html>
<html>
<body>
<script src="node_modules/es6-promise/dist/es6-promise.js"></script>
<script src="node_modules/reqwest/reqwest.js"></script>
<script src="src/js/test.js"></script>
</body>
</html>
这是我的 test.js
reqwest({
url: "www.google.com"
, type: 'json'
, method: 'post'
, contentType: 'application/json'
, headers: {
'X-My-Custom-Header': 'SomethingImportant'
}
}).then((res)=> {
alert(res);
}, (err)=> {
alert(err);
});
以下错误打印在我的控制台上。
XMLHttpRequest cannot load http://www.google.com/. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:63342' is therefore not allowed access. The response had HTTP status code 405.
我想捕获这个信息,但是失败的回调函数没有在 err 参数中捕获这个信息。它是空的 XMLHTTPRequest。我确信它没有任何其他参数。无论如何,请求不能为空。我究竟做错了什么。