如何在AngularJS中获取URI组件?例如,我有http://domain.com/photo/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