我正在另一个应用程序部门注入我的angular2应用程序,默认情况下,url包含一个大查询字符串。我将如何将该url和查询字符串设置为angular2
中的基本URLexp url: http.example.com/this/thai?this=thhtyy&ttthh
{provide: APP_BASE_HREF, useValue: '/'},
答案 0 :(得分:1)
因为您使用/作为基本URL。您可以将基本网址更改为您在代码中获得的第一个网址。
{provide: APP_BASE_HREF, useValue: window.document.location.href}