jQuery ajax不会发出HTTPS请求

前端之家收集整理的这篇文章主要介绍了jQuery ajax不会发出HTTPS请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在我的网站上做了一些非常基本的jQuery ajax东西,而且我遇到了一大堆麻烦.

这是相关的代码

  1. $(document).ready( function() {
  2. $("#getdatabutton").click( function() {
  3. $.ajax({
  4. url: "/jsontest/randomdata",type: "get",data: [{name:"ymax",value:$("#randomgraph").height()},{name:"count",value:$("#countinput").val()},{name:"t",value:Math.random()}],success: function(response,textStatus,jqXHR) {
  5. data = JSON.parse(response);
  6. updateGraph(data);
  7. $("#result").html(response);
  8. if(data["error"] == "") {
  9. $("#errorBox").html("None");
  10. }
  11. else {
  12. $("#errorBox").html(data["error"]);
  13. }
  14. },error: function(jqXHR,errorThrown) {
  15. $("#errorBox").html(textStatus + " " + errorThrown);
  16. }
  17. });
  18. });
  19. });

页面通过HTTPS加载,但XMLHttpRequests似乎通过HTTP传出.

我甚至尝试将url更改为绝对URL(https://larsendt.com/jsontest/randomdata),它仍然将请求发送到我的站点的HTTP版本.

当然,由于请求是针对不同的协议,因此ajax调用失败(跨域和所有这些).

据Chrome报道:

  1. The page at https://larsendt.com/jsontest/ displayed insecure content from http://larsendt.com/jsontest/randomdata/?ymax=500&count=32&t=0.08111811126582325.

我能想到的唯一其他相关信息是我有Nginxhttp://larsendt.comhttps://larsendt.com进行301重定向,但我不知道这会如何破坏任何东西(我相信这是相当标准的做法).

如果你想要一个现场演示,破碎的版本仍然在https://larsendt.com/jsontest.

无论如何,提前谢谢.

尝试修复URL,以便您的服务器不必重定向

  1. url: "/jsontest/randomdata/" // there was a missing trailing /
  2. // i.e. https://larsendt.com/jsontest/randomdata?ymax=500&count=32&t=0.9604179110508643
  3. // was going to https://larsendt.com/jsontest/randomdata/?ymax=500&count=32&t=0.9604179110508643

猜你在找的Nginx相关文章