每次路由更改时,您都可以将 URL 保存在窗口对象的历史状态中。在你的情况下,如果你只保存主机名而不是完整的 URL 就可以了。像这样 :window.history.pushState({ prevUrl: window.location.host }, null, "/new/path/in/your/app");您可以编写一个自定义函数,该函数将在单击时调用:goBack(){ if(window.history.state && window.history.state.prevUrl){ let url = window.history.state.prevUrl; //check if the url matches with the your applications host name if(url == 'hostName'){ history.goBack(); } }}