2

コンテンツ タイプに対して次の検証があります。

validates_attachment_content_type :photo, :content_type => /^image\/(jpg|jpeg|pjpeg|png|x-png|gif)$/, :message => 'file type is not allowed (only jpeg/png/gif images)'

上記のメッセージのみを表示したいのですが、代わりに

 Photos photo content type file type is not allowed (only jpeg/png/gif images)

写真のモデルと添付ファイルの写真であるためです。

ありがとう

4

3 に答える 3

1

私はこのパーティーに遅れています。

validates_attachment_size :image, :in => 0.megabytes..2.megabytes,  message: " is too large, try less than 2mb  or for help"

あなたを取得します:

次の出力で、家に近づく必要があります。

「画像ファイルのサイズが大きすぎます。2MB 未満にしてください」

于 2015-05-06T18:41:14.160 に答える
-3

Hello please d validation paperclip avtar image

attr_accessible :avatar

has_attached_file :avatar, :styles => { :small => "60x60>", :thumb => "60x60>" }

validates_attachment :avatar, :presence => true, 
:content_type => { :content_type => "image/jpg" }, 
:size => { :in => 0..1000.kilobytes }  
于 2013-04-19T08:56:02.710 に答える