我可以使用多個路由器在backbone.js
,這不會互相干擾其他路由,沒有任何問題?或者有什麼我應該關注的?多個路由器backbone.js
代碼示例:
myapp.routers.main = Backbone.Router.extend({
routes : { "": "index" },
index : function() { console.log("routed by main router");}
});
myapp.routers.another = Backbone.Router.extend({
routes : { "notmain": "index" },
index : function() { console.log("routed by another router");}
});
mainrouter = new vaikava.routers.main;
notmainrouter = new vaikava.routers.another;
Backbone.history.start();
回答這個問題最簡單的方法就是試試看看它是否有效。據我所知,你所描述的內容應該沒有問題。 – nrabinowitz
我自己嘗試過 - 沒有錯誤,但由於這是我第一個真正的主幹應用程序,我讀過可能存在多個路由器的問題,我想在這裏問 – Industrial