だから私はbest_in_place gem [https://github.com/bernat/best_in_place]をセットアップしましたが、編集しようとした列が次のように見えtitle_name
、エラーが発生すると次のように表示されると、少し問題に直面しています
'title_name can't be blank,is too short (minimum is 1 characters)'
宝石がエラー表示を処理する方法を編集したいので、を置き換えて_
、space
少し作りますuser-friendly
編集:
Firebug経由で取得した応答を確認するのは次のとおりです。
{"title_name":["can't be blank","is too short (minimum is 1 characters)"]}
gem デモの場所 http://bipapp.heroku.com/users/59
["Last name has invalid length","Last name can't be blank"]
これは少し違います...
EDIT2:
post.rb
class Post < ActiveRecord::Base
attr_accessible :post_id, :title_name, :total_items, :user_id
validates :title_name, :presence => true, :length => { :in => 1..50 }
belongs_to :user, :foreign_key => 'post_id'
self.primary_key = :post_id
def to_param
"#{post_id}"
end
end