当我点击按钮删除www.something / thispart 时,我想修改网址,所以我创建了这段代码:
//JS from alerte.html
import { Template } from 'meteor/templating';
import { Session } from 'meteor/session';
import './404.html';
Template.error.onRendered(function alerteOnCreated() {
});
Template.error.events({
'click #goHome404': function(){
var url = window.location.href.split("/")[2]
window.location.href = url ;
document.location.href= url;
window.location.replace(url);
}
});
Template.error.helpers({
});
尽管在终端控制台中点击goHome404
时出现了正确的事情,但没有任何结果:
答案 0 :(得分:0)
使用它
window.location.pathname
返回到u只请求路径名
答案 1 :(得分:0)
最后,我使用Router.go("/")
感谢您的帮助