こんにちは。config/routes.rb の書き方について質問します。Backbone.js と組み合わせて使いたいと思っています。view は public/index.html 1つだけとして、HTMLの表示にRails の view 及び controller は使いません。Rails では /api/resources のようなアクセスだけ処理するようにし、/new のようなアクションは全て public/index.html を表示し、index.htmlで読み込んでいるBackbone.jsで処理したいと思っています。# config/routes.rbmatch '*path', :to => redirect('/')scope 'api' doresources :events, :defaults => { :format => :json }end# App.router.js.coffeeclass App.Routers.Events extends Backbone.Routerroutes:'' : 'index''new' : 'createEvent'index: ->alert 'index'
showEvent: ->alert 'show event'こんな感じかと思ったのですが、うまくいきませんでした。redirectしているのが悪いと思うのですが、何か良い書き方はあるでしょうか?よろしくお願いします。--
Shintaro Abe