私のレールアプリでは、次のようにルートをネストしています:-
resources :users do
resources :posts do
end
end
個々のユーザーの投稿に対するすべてのコメントを取得する必要があるとします。投稿のコレクションには fetch 関数を使用する必要があります。
class DemoApp.Collections.Posts extends Backbone.Collection
// here my url should consist of user_id and action where the posts
// are being fetched.
url: "/users/user_id/posts"
コメントを取得するには、オブジェクトに対して fetch 関数を呼び出す必要があります。
posts = DemoApp.Collections.Posts
posts.fetch()
user_id の受け渡しに問題があります。
gem を使用したバックボーン オン レール (0.9.2.1)
ルビーバージョン 1.9.3
レールバージョン 3.2.1