Rubyを学び始めたばかりなので、この質問は簡単です。
コントローラーで @subject を作成しました。
:subject が form_for で (@subject の代わりに) 使用されるのはなぜですか?
<%= form_for(:subject, :url => {:action => 'create'}) do |f| %>
Rubyを学び始めたばかりなので、この質問は簡単です。
コントローラーで @subject を作成しました。
:subject が form_for で (@subject の代わりに) 使用されるのはなぜですか?
<%= form_for(:subject, :url => {:action => 'create'}) do |f| %>
これは、rspec rails テストの assigns に似ています (調べることができます。assigns(:subject) は、コントローラーで @subject を探します)。間違っている場合は訂正してください。ただし、シンボル :subject が @subject に対応するコントローラー内のインスタンス変数を探し出そうとするためだと思います。それを証明するために、コントローラーの @subject の名前を @subjectz のような別の名前に変更してください。
According to the documentation, you could use either (http://api.rubyonrails.org/classes/ActionView/Helpers/FormHelper.html#method-i-form_for).
Passing in the symbol :subject
will create a generic form for a resource named 'subject'. Passing in the instance variable @subject
will create a form for the specific instance of the Subject class and figure out the correct url for you (assuming you're following the standard rails conventions). The documentation mentions that using the latter method with the instance variable is the preferred method.