バックボーン ルートのハッシュマップの一部として、ディレクトリの場所とファイル パスを渡そうとしています。これはハッシュマップ付きの URL です。
localhost/index.html#directory-http://localhost/foobar-html/foo.html
そして、これは上記のURLをマップする私のルートです:
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 をマップする正しい方法は何でしょうか? ありがとう!