angularjs:如何重定向到不同的URL?

时间:2018-02-13 00:10:47

标签: javascript angularjs

在我的angularjs应用程序中,我想重定向到不同的站点/域。我正在使用:

$location.url(someOtherDomain);

如何从我的angularjs应用程序重定向到此网址?

2 个答案:

答案 0 :(得分:1)

您可以使用可以注入的return $window.location = 'https://someurl.com'对象:

returnPlayerByName

答案 1 :(得分:0)

您可以使用以下方法:

$window.open('https://someurl.com','_blank');