Angular2重定向到外部URL

时间:2016-10-29 23:33:32

标签: javascript angular

我正在尝试将我的Angular2应用程序重定向到我的OAuth2身份验证服务器登录页面。这意味着我必须重定向到外部URL。 我测试了这个:

whiteListCounter = numpy.zeros((1, lenwhitefile), dtype = numpy.float64)

这适用于Firefox但不适用于Chrome。难道没有更好的方法吗? this.router.navigate(["/"]).then(result=>{window.location.href = 'http://external-url';}); 是我能找到的唯一解决方案。

1 个答案:

答案 0 :(得分:0)

我有类似的问题。对我来说,重定向在Chrome中有效,但在Firefox中无效。 请尝试使用以下代码:

window.location.assign(http://external-url);