1

私は最近、フォームの送信に成功して変更されたフィールドのリストを表示しようとしています。唯一の問題は、フォーム (単純なフォームを使用) にエラーが表示されず、フォームを送信できないことです。

これが私のコードを簡略化したものです:

def update
  @wizard.assign_attributes(params[:wizard])
  # Get changed attributes

  if @wizard.save
    # Set the success flash with fields modified
    redirect_to @wizard
  else
    @title = "Edition du profil"
    render 'edit'
  end
end

景色 :

<%= simple_form_for @wizard do |f| %>
    <%= f.input :email %>
    <%= f.input :story %>

    <%= f.submit "Modifier", :class => "btn success small" %>
<% end %>

モデル:

class Wizard < ActiveRecord::Base
  has_secure_password

  attr_accessible :email, :story, :password, :password_confirmation, :password_digest

  serialize :ranks, Array

  validates_presence_of :email, :first_name, :last_name, :gender, :story
  validates_presence_of :password, :password_confirmation, :unless => Proc.new { |w| w.password_digest.present? }

  # Other validations here

  has_one :subject, :foreign_key => "teacher_id"

  ROLES = %w[teacher]

  scope :with_role, lambda { |role| {:conditions => "roles_bitmask & #{2**ROLES.index(role.to_s)} > 0"} }

  # Other functions here
end

誰かアイデアはありますか?

前もって感謝します !

4

2 に答える 2

3

おそらく、AR を上書きした方法と関係があります。assign_attributes で問題が発生したプラグインを覚えています。その間、試すことができます:

@wizard.assign_attributes(params[:wizard], :without_protection => true)

それが機能する場合、少なくとも問題を大量割り当てに絞り込むことができます。

于 2011-10-05T12:04:30.270 に答える
0

編集/新しいビューでこの部分が欠落している可能性があります。model_name@wizardはどこにありますか。このコードをformタグに記述します。

<% if @wizard.errors.any? %>
        <div id="error_explanation">
          <h2><%= pluralize(@wizard.errors.count, "error") %> prohibited this task from being saved:</h2>

          <ul>
            <% @wizard.errors.full_messages.each do |msg| %>
                <li><%= msg %></li>
            <% end %>
          </ul>
        </div>
    <% end %>
于 2011-09-27T13:24:09.303 に答える