javascript-JQuery mobile.网站上只有一个https页面
作者:互联网
众所周知,JQuery mobile在从服务器重定向方面存在问题.
在网站上只有一个安全页面的最佳方法是什么?
这是场景:
>用户转到站点的根目录->
>用户转到付款页面->
><-服务器将用户重定向到https付款页面#在此步骤中,我们可以
使用data-ajax = false
>付款页面上的用户转到其他任何页面-> #我们应该拥有所有
页面上具有data-ajax = false的链接?看起来糟透了.什么是适当的
如何将用户从此页面转移到不安全的页面?
UPD这个问题不仅涉及移动站点,还涉及所有频繁使用ajax的站点.
解决方法:
解决此问题的一种方法是检测失败的页面加载,这是进行跨域AJAX调用所固有的,并尝试更改协议.使用这种方法无法进行AJAX和页面转换,但是,它可以防止您不得不用data-ajax = false属性乱丢您的网站.这适用于两个方向(即往返于HTTPS).
$(document).bind("pageloadfailed", function (event, data) {
// Let the framework know we're going to handle things.
event.preventDefault();
// Attempt to change protocols
window.location.href = data.absUrl.indexOf('https://') > -1 ?
data.absUrl.replace('https://', 'http://') :
data.absUrl.replace('http://', 'https://');
// At some point, if the load fails, either in this
// callback, or through some other async means, call
// reject like this:
data.deferred.reject(data.absUrl, data.options);
});
标签:ajax,https,jquery-mobile,javascript,jquery 来源: https://codeday.me/bug/20191127/2076294.html