我有CRUD,當創建一個新的條目時,沒有任何東西被保存,並且沒有錯誤產生。我可以看到日誌中發生的帖子。Ruby on Rails不保存崗位數據
控制器
def new
@article = Article.new
end
def create
@article = Article.new(params[:article])
if @article.save
redirect_to @article
else
render :action => 'new'
end
end
模型
class Article < ActiveRecord::Base
attr_accessible :title, :content end
路線
map.resources :articles
登錄
Parameters: {"article"=>{"title"=>"Dive trip", "content"=>"hfigoo"}, "commit"=>"Save changes"}
任何幫助表示讚賞:-)
您是否在'rails console'中試過了? – David
不知道,不知道該怎麼辦? – gilbert
請顯示錶格 –