以下代碼片段不會將我重定向到指定頁面(redirectUrl
) - 而是將字符串「localhost」的前綴redirectUrl前綴。
我最終重定向到"localhost/http://localhost/example/page".
我怎樣才能避免這種情況?
var redirectUrl = "http://localhost/example/page";
$location.path(redirectUrl); //redirects to "localhost/http://localhost/example/page".`
$scope.$apply();