我有一個模型驗證的是,當被觸發時,提出該模型和字段名的消息之前,例如滑軌(3.1)的應用程序:Rails中更改錯誤消息模型
資料圖像輪廓圖像內容類型只有JPEG,GIF和PNG格式的文件允許個人資料圖片
是否有避免的一種方式,所以它讀取:
model.rb驗證:只有JPEG,GIF和PNG格式的文件允許個人資料圖片
validates_attachment_content_type :profile_image,
:content_type => ['image/jpeg', 'image/png', 'image/gif'],
:message => "Only jpeg, gif and png files are allowed for profile pictures"
出現錯誤,因爲這代碼我的佈局的一部分:
<% if object.errors.any? %>
<div class="alert alert-message error" data-alert="alert">
<a class="close" data-dismiss="alert">×</a>
<ul>
<% object.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
請向我們展示顯示此錯誤的視圖的代碼。 –
我加了。謝謝 – yellowreign