是否可以为URL 可能是这样的地方注册路由/pages/*url
但不能注册路由?/pages/*url/edit/
foo/bar/and-so-on
问问题
3235 次
1 回答
4
router.route 原生支持使用正则表达式。
initialize: function(options) {
// Matches /117-a/b/c/open, passing "117-a/b/c" to this.open
this.route(/^(.*?)\/open$/, "open");
},
open: function(id) { ... }
于 2012-04-22T23:47:42.923 回答