我正在尝试将目录位置和文件路径作为主干路由中哈希图的一部分传递。这是带有哈希图的网址:
localhost/index.html#directory-http://localhost/foobar-html/foo.html
这就是我映射上述网址的路线:
routes: {
'directory-*directoryPath-*filePath': 'render'
},
render: function (directoryPath, filePath) {
// I get the entire url in directoryPath variable
// http://localhost/foobar-html/foo.html
// and filePath is empty.
}
映射这种类型的哈希 URL 的正确方法是什么?谢谢!