为什么不出现验证错误?

时间:2013-01-24 07:27:09

标签: ruby-on-rails ruby-on-rails-3

在我的情况下,即使存在验证错误,它也不会显示验证错误消息。

例如,我将这两列保留为空,并确保键入了验证字。然后,如果我尝试创建新记录。它不会显示验证错误:( 它回到表单但没有消息。

我在这个项目中一直使用验证错误消息,但我从未遇到过这个问题。

任何人都可以在这里找到问题吗?

在主题模型中验证

validates :title,   
    :presence => {:message => "can't be empty" },    
    :uniqueness => {:message => "choose unique title" },    
    :length => { :maximum => 20, :message => "must be less than 20 characters" }

validates :body,   
    :presence => {:message => "can't be empty" },    
    :length => { :maximum => 500, :message => "must be less than 20 characters" }

表格

<%= form_for([@community, @topic]) do |f| %>
.....

    <%= button_tag( :class => "btn btn-primary") do %>
    Create
    <% end %>

<% end %>

topic_controller

before_filter :simple_captcha_check, :only => [:update, :create]

def simple_captcha_check
    if !simple_captcha_valid?
        flash[:error] = 'wrong captcha'
        if request.put?
            @topic.attributes = params[:topic]  
            render :action => :edit
        elsif request.post?     
            @topic = Topic.new params[:topic]
            render :action => :new
        end
    end
end


def create
    @topic = @community.topics.build (params[:topic]) 
    @topic.user_id = current_user.id

    respond_to do |format|
        if @topic.save
            format.html { redirect_to community_topic_path(@community, @topic), notice: 'Created' }
            format.json { render json: [@community, @topic], status: :created, location: @topic }
        else
            format.html { render action: "new" }
            format.json { render json: @topic.errors, status: :unprocessable_entity }
        end
    end
end

的routes.rb

resources :communities do
     resources :topics
end

更新:

视图/布局/ application.html.erb

.....
<% flash.each do |name, msg| %>
  <div class="alert alert-<%= name == :notice ? "success" : "error" %>">
    <a class="close" data-dismiss="alert">&#215;</a>
    <%= content_tag :div, msg, :id => "flash_#{name}" if msg.is_a?(String) %>
  </div>
<% end %>
.....

1 个答案:

答案 0 :(得分:5)

在下一个请求之前,Flash不会出现。因此,如果您正在进行“重定向”,则会出现。

然而,您正在进行渲染而不是重定向。渲染时,返回视图的主体。

但不用担心,如果你想渲染一个视图(这很好),请使用这样的flash -

flash.now[:error] = 'wrong captcha'

.now确保在同一请求中的渲染视图中刷新闪存。

编辑:

您的验证没有出现的原因(当验证码失败时)是因为您的before_filter确实渲染并停止甚至被调用的创建操作。 @topic验证仅在创建时触发@ topic.save,但由于永远不会被调用(当验证码失败时),因此不会出现与属性验证相关的任何内容。

其次,flash.now [:error]将确保flash消息不会转移到下一个请求,因为您打算在同一请求的响应中使用。但是,如果你设置了flash [:error]和render,那么你的flash消息将出现在同一个请求的响应和下一个请求中。这应该回答@ saurabh上面的好问题并解开谜团?

最终编辑: @MKK必须包含一个错误,显示视图中缺少的部分。