84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
我现在在一个https网站(无编辑权)嵌入了JavaScript代码,代码中需要向自己搭建的服务器传输数据,如何强制使用http协议传输数据呢
闭关修行中......
把你的站也上https就行了,不然就用IP。这是个浏览器安全策略,改不了的。
... 代码中需要向自己搭建的服务器传输数据
假设题主在https网站的某页面嵌套了个js代码, 然后这个js代码会向你自己搭建的服务器传输数据, 那么, 这和https有什么关系呢,
https
js
你嵌套的js代码是直接和你的服务器连接的, 假设你的js是这样:
// 你正在https://www.baidu.com下引入自己的脚本 //假设为ajax了 $.ajax({ 'url': 'http://www.xxx.com/xxx/xx', //.... });
这样发起的请求和你在一个https网站(无编辑权)有什么关系呢??, 你的服务器接受什么协议就是什么协议啊
把你的站也上https就行了,不然就用IP。
这是个浏览器安全策略,改不了的。
... 代码中需要向自己搭建的服务器传输数据
假设题主在
https
网站的某页面嵌套了个js
代码, 然后这个js
代码会向你自己搭建的服务器传输数据, 那么, 这和https
有什么关系呢,你嵌套的
js
代码是直接和你的服务器连接的, 假设你的js
是这样:这样发起的请求和你在一个https网站(无编辑权)有什么关系呢??, 你的服务器接受什么协议就是什么协议啊