新手有個疑問
一般在CRUD的時候
在new這個action,通常會寫這樣
def
@article = Article.new
end
然後create
def
@article = Article.new(params[:article])
@article.save
end
我有兩個問題
1. 在new action 中的 Article.new,目的是為了 form_for所以才產生,
跟create action 中的@article 沒有關係?
2. params[:article] 的hash,是根據new action中的 @article 來命名?
這邊觀念仍然有點模糊,再麻煩各位幫我解答了~感謝