Angular 7将应用程序页面重定向到index.html

时间:2019-05-16 10:20:13

标签: angular2-routing angular7 angular7-router

是否可以使用angular 7从应用程序中的任何其他模块页面重定向到 index.html 页面?

1 个答案:

答案 0 :(得分:1)

好吧,这不是“成角度的方式”,但可行。

创建一个新的打字稿文件(例如locationUtils.ts)并向其中添加此功能

export function goToIndexPage(){
  let index = ""; //location of your index page
  window.location.href = window.location.origin + window.location.pathName + index;
}

然后就可以在任何地方使用它

此外,如果正在使用,请注意#登录路径