我試圖通過一個目錄位置和文件路徑作爲骨幹路由中hashmaps的一部分。這是包含HashMap的網址:在骨幹路由中傳遞url作爲hashmaps?
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的正確方法嗎?謝謝!
謝謝畝,第二種方式像魅力工作。 – codef0rmer