1. <legend id='IjgA7'><style id='IjgA7'><dir id='IjgA7'><q id='IjgA7'></q></dir></style></legend>
        <bdo id='IjgA7'></bdo><ul id='IjgA7'></ul>

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

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

      3. 使用 ajax 请求设置引用 URL

        时间:2023-08-01

            <small id='7BweQ'></small><noframes id='7BweQ'>

            <tfoot id='7BweQ'></tfoot>
            <legend id='7BweQ'><style id='7BweQ'><dir id='7BweQ'><q id='7BweQ'></q></dir></style></legend>
                <bdo id='7BweQ'></bdo><ul id='7BweQ'></ul>
                  <tbody id='7BweQ'></tbody>

              • <i id='7BweQ'><tr id='7BweQ'><dt id='7BweQ'><q id='7BweQ'><span id='7BweQ'><b id='7BweQ'><form id='7BweQ'><ins id='7BweQ'></ins><ul id='7BweQ'></ul><sub id='7BweQ'></sub></form><legend id='7BweQ'></legend><bdo id='7BweQ'><pre id='7BweQ'><center id='7BweQ'></center></pre></bdo></b><th id='7BweQ'></th></span></q></dt></tr></i><div id='7BweQ'><tfoot id='7BweQ'></tfoot><dl id='7BweQ'><fieldset id='7BweQ'></fieldset></dl></div>
                1. 本文介绍了使用 ajax 请求设置引用 URL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想在发送 ajax 请求时设置引用页面.我已经这样做了,但是没有用.

                  I want to set the referer page while sending an ajax request. I have done this way but it didn't work.

                  我已将此 javascript 包含在本地 html 文件中,并且主 url 是跨域的.

                  I have included this javascript in a local html file and the main url is cross domain.

                  $.ajax({
                    url: "{{main url}}",
                    dataType: "json",
                    beforeSend: function(xhr){
                    xhr.setRequestHeader('X-Alt-Referer', '{{referer url}}');
                    },
                    success: function(data){
                      console.log(data);
                    }
                  });
                  

                  我从这个网址得到了一些提示

                  I got some hint from this url

                  在 JavaScript 中设置请求标头

                  我明白了

                  "NetworkError: 404 Not Found - {{main url}}"
                  

                  当我从 Firefox 控制台尝试时出错

                  error when i tried it from firefox console

                  此脚本有什么问题或有其他方法吗?

                  What is wrong in this script or there is another way of doing this?

                  推荐答案

                  尝试使用下一个代码:

                  var main_url = "http://www.example1.com";
                  var referrer = "http://www.example2.com";
                  $.ajax({
                    url: main_url,
                    dataType: "json",
                    headers: {'X-Alt-Referer': referrer },
                    success: function(data){
                      console.log(data);
                    }
                  });
                  

                  这篇关于使用 ajax 请求设置引用 URL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何将值数组添加到 Set 下一篇:使用 JQuery 设置隐藏字段的值

                  相关文章

                      <bdo id='4uIap'></bdo><ul id='4uIap'></ul>

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

                      <small id='4uIap'></small><noframes id='4uIap'>