【问题标题】:Text response is empty when using fetch使用 fetch 时文本响应为空
【发布时间】:2017-07-04 10:15:01
【问题描述】:

以下代码:

fetch('http://localhost:8080/root/1487171054127/k_query_bearer_token', {
        mode: 'no-cors', credentials: 'include'
    })
        .then(function (response) {
            return response.text();
        })
        .then(function (text) {
            console.log('Request successful', text.length);
        })
        .catch(function (error) {
            log('Request failed', error)
        });

正在输出:

Request successful 0

如果我使用 curl:

curl 'http://localhost:8080/root/1487171054127/k_query_bearer_token' \
  -H 'Cookie: JSESSIONID=CviS9IK8pcsqADdP-m0MRXX_AvUqfzjJPwk1Yytf.ee16d0a01ad5' 

我得到一个文本形式的令牌(长度!= 0)。

如果我通过以下方式输出响应头:

curl 'http://localhost:8080/root/1487171054127/k_query_bearer_token' 
  -H 'Cookie: JSESSIONID=CviS9IK8pcsqADdP-m0MRXX_AvUqfzjJPwk1Yytf.ee16d0a01ad5'
  --head

我明白了:

HTTP/1.1 200 OK
Connection: keep-alive
X-Powered-By: Undertow/1
Server: JBoss-EAP/7
Content-Type: text/plain
Content-Length: 1730
Date: Wed, 15 Feb 2017 16:17:00 GMT

为什么我通过 fetch 没有收到任何文本?

【问题讨论】:

标签: javascript cors fetch-api


【解决方案1】:

删除mode: 'no-cors'

当您使用no-cors 模式时,您明确指定您需要“opaque response”

您的脚本无法访问不透明响应的任何属性——实际上您所能做的就是缓存它。 no-cors 模式基本上只在使用 Service Worker 进行缓存时才有用。

如果您的脚本使用no-cors 模式的原因是因为对服务器的跨域请求将无法正常工作,那么正确的解决方案是更新服务器端代码以发送Access-Control-Allow-Origin 响应标头和其他 CORS 标头(如果您有权访问服务器,请执行此操作),否则,请使用 https://cors-anywhere.herokuapp.com/ 之类的代理。

【讨论】:

  • 你是个传奇。我认为这是因为客户端代码,因为服务器端正在给出响应.. 不!
猜你喜欢
  • 2020-04-28
  • 1970-01-01
  • 2016-11-15
  • 1970-01-01
  • 2013-11-22
  • 1970-01-01
  • 2021-01-15
  • 2016-03-27
  • 1970-01-01
相关资源
最近更新 更多