8

我正在使用带有“no-cors”模式的fetch polyfill 并获得响应状态 0。在开发人员工具中,我可以看到响应具有请求的数据。

客户端代码:

const BASE_CONFIG = {
    credentials: 'include',
    mode: 'no-cors'
};

let checkStatus = (response) => {
    if (response.status >= 200 && response.status < 300) {
        return response;
    } else {
        var error = new Error(response.statusText);
        error.response = response;
        throw error;
    }
};

function GET(url, urlParams={}, config={}) {
    let requestConfig = {
        method: 'get'
    };
  
    Object.assign(requestConfig, BASE_CONFIG, config);
    return fetch(url, requestConfig)
            .then(checkStatus)
            .then(parseJSON);
}

GET('http://other.domain,{})

Beckend nodejs (Express.js) 简化的响应处理程序:

function getData(req, res) {
    var responseData = {data: 'test'};
    res.header("Access-Control-Allow-Origin", "*");
    res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
    res.writeHead(200, {"Content-Type": "application/json"});
    return res.end(JSON.stringify(responseData));
}

知道我做错了什么吗?谢谢!

4

2 回答 2

2

我不知道你是否使用了file:协议,但在这种情况下你可以获得响应状态 0。

Chrome 和 Firefox 的原生实现都不支持获取本地文件

请参阅:https ://github.com/github/fetch/pull/92#issuecomment-140665932

现在,不幸的是,文件和 ftp URL 留给读者作为练习。如有疑问,请返回网络错误。

请参阅:https ://fetch.spec.whatwg.org/#basic-fetch (文件和 ftp 子部分)

于 2015-12-28T22:31:20.603 回答
2

no-corsmode 只针对 CDN 内容,例如脚本、CSS 和图片,不能用于获取数据,<code>response.status = 0 是正确的行为

于 2016-07-18T10:04:19.733 回答