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

    <tfoot id='68K1Y'></tfoot>

    <legend id='68K1Y'><style id='68K1Y'><dir id='68K1Y'><q id='68K1Y'></q></dir></style></legend>
    • <bdo id='68K1Y'></bdo><ul id='68K1Y'></ul>
    1. 当使用 mode: no-cors 请求时,浏览器没有添加我在

      时间:2023-10-14
      <tfoot id='hMWnk'></tfoot>
        <tbody id='hMWnk'></tbody>

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

                本文介绍了当使用 mode: no-cors 请求时,浏览器没有添加我在前端代码中设置的请求标头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                在我的 React 应用程序中,我有以下 API POST 以允许用户编辑他们的个人资料(名称和图像).

                in my React app, I have the following API POST to allow the user to edit their profile (name and image).

                  static updateProfile(formData, user_id) {
                    const request = new Request(`http://localhost:4300/api/v1/profiles/${user_id}`, {
                      headers: new Headers({
                        'Authorization': getBearerToken()
                      }),
                      mode: 'no-cors',
                      method: "POST",
                      body: formData
                    });
                
                    return fetch(request).then(response => {
                      return response.json();
                    }).catch(error => {
                      return error;
                    });
                  }
                

                上面的问题是带有授权令牌的标头没有在 POST 中发送...

                The problem with the above is the header with the Authorization token is not being sent in the POST...

                如何在上面的 fetch 请求中获取要发送的 Authorization 标头?

                How can I get the Authorization header to be send in the fetch request above?

                仅供参考,对于非多部分表单,授权令牌已成功发送,如下所示:

                FYI, for non-multipart forms, the authorization token is sent successfully like so:

                  static loadProfile(user_id) {
                    const request = new Request(`http://localhost:4300/api/v1/profiles/${user_id}`, {
                      headers: new Headers({
                        'Authorization': getBearerToken(),
                        'Accept'       : 'application/json',
                        'Content-Type' : 'application/json',
                      })
                    });
                
                    return fetch(request).then(response => {
                      return response.json();
                    }).catch(error => {
                      return error;
                    });
                  }
                

                推荐答案

                如果你设置了任何特殊的请求头,你不能使用 no-cors 模式,因为使用它的效果之一request 是它告诉浏览器不允许您的前端 JavaScript 代码设置除 CORS 安全列出的请求标头.请参阅规范要求:

                You can’t use no-cors mode if you set any special request headers, because one of effect of using it for a request is that it tells browsers to not allow your frontend JavaScript code to set any request headers other than CORS-safelisted request-headers. See the spec requirements:

                要将 name/value 对附加到 Headers 对象 (headers),请运行以下步骤:

                To append a name/value pair to a Headers object (headers), run these steps:

                1. 否则,如果 guardrequest-no-cors";并且 name/value 不是 CORS-safelisted request-header,返回.
                1. Otherwise, if guard is "request-no-cors" and name/value is not a CORS-safelisted request-header, return.

                在该算法中,return 等同于在不将该标头添加到 Headers 对象的情况下返回".

                In that algorithm, return equates to "return without adding that header to the Headers object".

                Authorization 不是 CORS-safelisted request-header,因此如果您使用 mode: 'no-cors' 请求,您的浏览器将不允许您设置.Content-Type: application/json 也一样.

                Authorization isn’t a CORS-safelisted request-header, so your browser won’t allow you to set if you use mode: 'no-cors'for a request. Same for Content-Type: application/json.

                如果您尝试使用 no-cors 模式的原因是为了避免在不使用时出现的其他问题,则解决方案是修复导致其他问题的根本原因.因为无论您试图解决什么问题,mode: 'no-cors' 最终都不会成为解决方案.它只会产生不同的问题,比如你现在遇到的问题.

                If the reason you’re trying to use no-cors mode is to avoid some other problem that occurs if you don’t use, the solution is to fix the underlying cause of that other problem. Because no matter what problem you might be trying to solve, mode: 'no-cors' isn’t going to turn out to be a solution in the end. It’s just going to create different problems like what you’re hitting now.

                这篇关于当使用 mode: no-cors 请求时,浏览器没有添加我在前端代码中设置的请求标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何删除 CORB 警告? 下一篇:将所有域添加到 CORS 的安全隐患(访问控制允许来

                相关文章

                最新文章

                <tfoot id='LmlhN'></tfoot>

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

                  2. <small id='LmlhN'></small><noframes id='LmlhN'>

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