「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 です。私はそれが他のパラメータを持っていないと確信しています。リクエストを空にすることはできません。私は何を間違っていますか。