我正在研究 ChaplinJS(骨干框架)。以下是我的 route.js 代码块。
return function(match) {
match(':customer/getCardsNavSummary', {controller:'customer', action:'showPlan'});
match(':customer/getCardsNavSummary/:plan/:row', {controller:'customer', action:'showPlan'});
};
相反,我想做以下事情
return function(match) {
match(':customer/getCardsNavSummary(/:plan/:row)', {controller:'customer', action:'showPlan'});
};
这对 Backbone 来说效果很好。我也浏览了rails的路由代码,它在那里工作。但是当谈到 chaplinjs 时,它不会!
在 chaplinJS 文档中,我没有找到与路由器可选参数相关的任何内容。