0

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'});
    };

これはバックボーンに対してうまく機能します。Railsのルーティングコードも調べましたが、そこで動作します。しかし、chaplinjs に関してはそうではありません。

chaplinJS doc では、ルーターのオプション パラメータに関連するものは見つかりませんでした。

4

1 に答える 1