我正在尝试将routerjs用作独立库,但无法弄清楚如何在文档中说明如何实现处理程序查找,并且找不到任何示例。
到目前为止我得到了什么:
var router = new Router['default']()
router.map(function(match) {
match('/').to('index')
match('/chat').to('chat')
})
我尝试在这样的路线中使用回调,但是每次回调都被调用,不管我在哪个网址上,所以我不确定如何使用它:
router.map(function(match) {
match('/').to('index', function() {
console.log('always called')
})
match('/chat').to('chat', function() {
console.log('always called as well')
})
})
有人成功使用过吗?