繁体   English   中英

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

[英]How can I obtain URI components using angular.js

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

那么如何将第二个段(= 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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM