以下方法在电脑和安卓手机的调试过程中是可以的,但是iPhone手机上面是不行的
console.log(url);
// window.open(url);
// window.location.hash = url;
下面这个可以兼容iPhone手机,加了一个时间戳
console.log(url)
window.location.href = `${url}?t=${new Date().getTime()}`;
以下方法在电脑和安卓手机的调试过程中是可以的,但是iPhone手机上面是不行的
console.log(url);
// window.open(url);
// window.location.hash = url;
下面这个可以兼容iPhone手机,加了一个时间戳
console.log(url)
window.location.href = `${url}?t=${new Date().getTime()}`;