1

私の環境は ruby​​1.9.3+rails3.2.8+passenger です。

エラー: 少なくとも 1 つの検証を提供する必要があります

class Post < ActiveRecord::Base
  attr_accessible :content, :title, :url, :tags_attributes, :published, :category_id

  has_many :comments, :dependent => :destroy
  has_many :tags, :dependent => :destroy

  belongs_to :category

  validates :content, :presence => true
  validates :title, :presence => true
  validates :url,   :presence => true
  validates :tags_attributes, :presence => true
  validates :published, :presence => true
  validates :category_id, :presence => true

  accepts_nested_attributes_for :tags, :allow_destroy => true,
         :reject_if => proc { |attrs| attrs.all? { |k,v| v.blank? } }


  scope :published, where(:published => true)
end   

私のコントローラーは

class Admin::PostsController < Admin::ApplicationController

  uses_tiny_mce(:options => AppConfig.default_mce_options, :only => [:new, :edit])

  def index
    page = params[:page]
    if page == nil
      page = 1
    end
end

index.html.erb

<h2>Post list</h2>
<table>
  <tr>
    <th>Title</th>
    <th>Category</th>
    <th>Created</th>
    <th>Updated</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>
  <% @posts.each do |post| %>
  <tr>
    <td><%= post.title %></td>
    <td><%= post.category.title %></td>
    <td><%= post.created_at.localtime.to_s(:db) %></td>
    <td><%= post.updated_at.localtime.to_s(:db) %></td>
    <td><%= link_to 'Edit', edit_admin_post_path(post) %></td>
    <td><%= link_to 'Delete',[:admin, post], :method => :delete, :confirm => 'are you sure?' %></td>
    <td></td>
  </tr>
  <% end %>
</table>

<br/>
<%= will_paginate @posts %>
<br/>
<%= link_to 'New Post', new_admin_post_path %>

rails_tiny_mce に問題があると思います。Railsプラグインをインストールする前に、検証は私の書き込みで問題ありません。しかし、rails_tiny_mce をインストールした後、エラーが表示されます。

私のサイトはhttp://42.121.5.68/admin/posts.

モデルを更新するとき

validates [:content, :title], :on => :save, :allow_blank => false,
            :presence => true, :length => { :in => 10..200 }

エラーは不明なバリデータです: 'OnValidator'

4

2 に答える 2

1

これは間違っています:

:length => 10..200

そのはず:

:length => { :in => 10..200 }

Rails ガイドを参照してください。

さらに:length => { :in => 10..200 }、フィールドが空でないことをすでに確認しているため、次のように削除することもできます:presence => true

validates :content, :title, :length => { :in => 10..200 }
于 2012-11-02T03:38:34.103 に答える
1

あなたはこのように書くべきです

于 2013-08-02T13:32:32.937 に答える