1. <legend id='3nUNg'><style id='3nUNg'><dir id='3nUNg'><q id='3nUNg'></q></dir></style></legend>

      • <bdo id='3nUNg'></bdo><ul id='3nUNg'></ul>
      <i id='3nUNg'><tr id='3nUNg'><dt id='3nUNg'><q id='3nUNg'><span id='3nUNg'><b id='3nUNg'><form id='3nUNg'><ins id='3nUNg'></ins><ul id='3nUNg'></ul><sub id='3nUNg'></sub></form><legend id='3nUNg'></legend><bdo id='3nUNg'><pre id='3nUNg'><center id='3nUNg'></center></pre></bdo></b><th id='3nUNg'></th></span></q></dt></tr></i><div id='3nUNg'><tfoot id='3nUNg'></tfoot><dl id='3nUNg'><fieldset id='3nUNg'></fieldset></dl></div>
      <tfoot id='3nUNg'></tfoot>

      <small id='3nUNg'></small><noframes id='3nUNg'>

      redux fetch body 在没有 cors 模式的情况下不使用

      时间:2023-10-02

      • <i id='upBlI'><tr id='upBlI'><dt id='upBlI'><q id='upBlI'><span id='upBlI'><b id='upBlI'><form id='upBlI'><ins id='upBlI'></ins><ul id='upBlI'></ul><sub id='upBlI'></sub></form><legend id='upBlI'></legend><bdo id='upBlI'><pre id='upBlI'><center id='upBlI'></center></pre></bdo></b><th id='upBlI'></th></span></q></dt></tr></i><div id='upBlI'><tfoot id='upBlI'></tfoot><dl id='upBlI'><fieldset id='upBlI'></fieldset></dl></div>

            <tbody id='upBlI'></tbody>
          1. <legend id='upBlI'><style id='upBlI'><dir id='upBlI'><q id='upBlI'></q></dir></style></legend>
            • <bdo id='upBlI'></bdo><ul id='upBlI'></ul>

              <small id='upBlI'></small><noframes id='upBlI'>

            • <tfoot id='upBlI'></tfoot>

                本文介绍了redux fetch body 在没有 cors 模式的情况下不使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我有这个调用函数的动作:

                I have this action which calls a function:

                dispatch(Api({url: "my_url", method: "POST", data: data}))
                

                这里我将数组作为数据传递..

                Here I am passing array as a data..

                import fetch from 'isomorphic-fetch'
                
                export default function Api({url, method, headers, data}={}){
                    return dispatch => {
                
                        console.log(data)
                        console.log(url)
                        console.log(method)
                        console.log(JSON.stringify(data))
                        let response = fetch(url, {
                            mode: 'no-cors',
                            method: method || null,
                            body: data || null, 
                        }).then(function(response) {
                            console.log("response");
                             console.log(response)
                            });
                
                    }
                }
                

                我在这里使用 fetchmode:'no-cors' 我想我传递了所有的争论.我的身体是我传递的简单数组作为争论..

                Here I am using fetch with mode:'no-cors' I guess I am passing all the arguements.. My body here is simple array that I am passing as arguement..

                当我看到回复时,就像:

                When I see the response it is like :

                body: null
                bodyUsed: false
                headers: Headers
                ok: false
                status: 0
                statusText: ""
                type: "opaque"
                url:""
                

                这里我的身体没有被使用..

                Here my body is not being used..

                这里有什么问题?需要帮助

                What is wrong in here ? Need help

                推荐答案

                你得到一个不透明的响应 [1] [2],因为您将 fetch 与 mode: 'no-cors' 一起使用.您需要使用 mode: 'cors' 并且服务器需要发送所需的 CORS 标头 [3] 以访问响应.

                You're getting an opaque response [1] [2], because you're using fetch with mode: 'no-cors'. You need to use mode: 'cors' and the server needs to send the required CORS headers [3] in order to access the response.

                这篇关于redux fetch body 在没有 cors 模式的情况下不使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:从 ReadableStream 对象中检索数据? 下一篇:如何使用 node-fetch 发送 cookie?

                相关文章

              • <i id='cmGSe'><tr id='cmGSe'><dt id='cmGSe'><q id='cmGSe'><span id='cmGSe'><b id='cmGSe'><form id='cmGSe'><ins id='cmGSe'></ins><ul id='cmGSe'></ul><sub id='cmGSe'></sub></form><legend id='cmGSe'></legend><bdo id='cmGSe'><pre id='cmGSe'><center id='cmGSe'></center></pre></bdo></b><th id='cmGSe'></th></span></q></dt></tr></i><div id='cmGSe'><tfoot id='cmGSe'></tfoot><dl id='cmGSe'><fieldset id='cmGSe'></fieldset></dl></div>
                  <tfoot id='cmGSe'></tfoot>
                    <bdo id='cmGSe'></bdo><ul id='cmGSe'></ul>
                  <legend id='cmGSe'><style id='cmGSe'><dir id='cmGSe'><q id='cmGSe'></q></dir></style></legend>
                1. <small id='cmGSe'></small><noframes id='cmGSe'>