如何使用angular.js获取URI组件

时间:2015-03-03 19:00:51

标签: javascript angularjs url uri segment

如何在AngularJS中获取URI组件?例如,我有http://domain.com/photo/1

那么如何才能将第二段(= 1)变为角度变量?谢谢。

1 个答案:

答案 0 :(得分:1)

你不需要Angular,你可以这样做:

var url = document.URL.split('/'); // Get the current full url, eg: http://domain.com/photo/1 splitted by slashes
var lastArg = url[url.length];     // Get the last string after the last slash