0

我尝试为我的表对象使用rails控制台,但是当我安装巫术或formtastic(我不知道)时,我的记录没有保存。

模型

class Depositi < ActiveRecord::Base
 attr_accessible :code, :description
 validates_presence_of :code, :message => 'Code required!'
end

看法

<%= semantic_form_for(@depositi) do |f| %>
    <%= f.inputs 'Dati Deposito' do %>
    <%= f.input :code, :label => 'Codice Deposito:' , :wrapper_html => { :class => 'fl' }, :required => true %>
    <%= f.input :description, :label => 'Descrizione:', :wrapper_html => { :class => 'fl'},  :input_html => {:size => '15'} %> 
    <% end %>
    <%= f.actions do %>
    <%= f.action :submit, :as => :button, :label => 'Save' %>
    <% end %>
    <% end %>

这是我的调试:

utf8    ✓
authenticity_token  kVQ5OOkmGxqoZgbvteJ80M+lLHwopWEY0SI4YetQYsg=
depositi    {"code":"001","description":"Test this is test"}
button  
action  new

控制器

def create
@depositi = Depositi.new(params[:depositi])

respond_to do |format|
  if @depositi.save
    format.html { redirect_to @depositi, notice: 'Record salvato con successo!' }
    format.json { render json: @depositi, status: :created, location: @depositi }
  else
    format.html { render action: "new" }
    format.json { render json: @depositi.errors, status: :unprocessable_entity }
  end
end

结尾

此记录不保存!我是属性登录,我没有错误..为什么不保存?


已解决:在我看来,问题是 <%= semantic_form_for(@depositi) do |f| %> 我写的是与formtastic 渲染形式相冲突的。

4

0 回答 0