在我的angularjs应用程序中,我想重定向到不同的站点/域。我正在使用:
$location.url(someOtherDomain);
如何从我的angularjs应用程序重定向到此网址?
答案 0 :(得分:1)
您可以使用可以注入的return $window.location = 'https://someurl.com'
对象:
returnPlayerByName
答案 1 :(得分:0)
您可以使用以下方法:
$window.open('https://someurl.com','_blank');