作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想制作一个处理文件的 Angular 站点,用户可以在其中浏览文件系统树,(如在 github 上: github.com/angular/angular.js/tree/master/path/to/my/file.js
。
我想捕获那个 path/to/my/file.js
带有 Angular 路线的 URL 的一部分:
.when("/files/:myPath", templateUrl: "...", controller: "...")
:myPath
只匹配到下一个斜线。
.../index.html#/files/path/to/my/file
.
最佳答案
从 Angular 1.1.5 开始,您可以使用 *path
- 见 here .
path can contain named groups starting with a star (*name). All characters are eagerly stored in
$routeParams
under the given name when the route matches.For example, routes like /color/:color/largecode/*largecode/edit will match/color/brown/largecode/code/with/slashs/edit
:path*
(在评论中归功于 DRAX)
关于angularjs - 如何在 angular.js 中使用任意数量的斜杠捕获 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16227004/
我是一名优秀的程序员,十分优秀!