我正在使用angularjs创建应用程序。我需要来自url的特定字符串,这是我的网址:
https://localhost:8443/#/admin/dashboard
我只需要来自网址的管理员
console.log($location.path())// this will gives me `/admin/dashboard`
答案 0 :(得分:0)
只是粘贴@AvinashRaj评论作为答案。
为结果尝试这些基本的字符串方法。
$location.path().split('/')[1];
或强>
$location.path().slice(1,6);
$location.path().substr(1,5);