从角度获取url中的特定字符串

时间:2016-04-18 10:54:01

标签: javascript angularjs

我正在使用angularjs创建应用程序。我需要来自url的特定字符串,这是我的网址:

https://localhost:8443/#/admin/dashboard

我只需要来自网址的管理员

console.log($location.path())// this will gives me `/admin/dashboard`

1 个答案:

答案 0 :(得分:0)

只是粘贴@AvinashRaj评论作为答案。

为结果尝试这些基本的字符串方法。

$location.path().split('/')[1];

$location.path().slice(1,6);
$location.path().substr(1,5);