function setInit(){
iu.init({
saveFile : 'store/saveImageFile'
,CallBackOnSave : function (s){
console.log("redirect");
window.location.replace("store/details");
}
});
}
iu
是一个没有问题的图片上传模块。事实上,我可以看到重定向的控制台日志。
尝试了其他方式,例如 href ,遗憾的是同样的结果。
答案 0 :(得分:0)
只需使用:
window.location.href = "store/details";
答案 1 :(得分:0)
也许试试:
parent.window.location.href = "store/details";
答案 2 :(得分:0)
你可以这样使用,
window.location.href = window.location.host + relativePath
window.location.href = relativePath
window.location.href = "store/details";
window.location.href = window.location.host + 'store/details';