で、私は最近、私のコメントのコントローラで3問題レール3
をレールにアップグレードしたアプリを持っている私は
def create
@cuser = @current_user
@story = Story.find(params[:story_id])
@story.comments.create(:user_id => @cuser.login,:body => params[:comment][:body])
respond_to do |format|
format.html { story_path}
format.js
end
end
を持っていますstory.rb
では私は私が
belongs_to :story
を持ってcomment.rb
でhas_many :comments
を持っています
Couldn't find Story without an ID
これはうまく機能しませんでした。なぜそれ以上のアイデアはありませんか?他に何が影響を与えているのでしょうか?それはルーティングの問題かもしれませんか?
私はリソースを持っています:[:story_id]今それは私がのparamsを使用しています – gleb