У меня есть CRUD, что при создании новой записи ничего не сохраняется и ошибка не генерируется. Я вижу сообщение в журналах.
Контроллер
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"}
Любая помощь приветствуется: -)