私は問題があります。
属性のないメッセージを表示しようとしています。私は答えを探しましたが、どの解決策もうまくいきました。
次のようなエラーメッセージのみを表示したい:
添付ファイル ベースnão é permitido upload de .exe
ただし、常に次のように表示します: "Attachments base". 表示したいのは: não é permitido upload de .exe
さて、私のモデルでは検証があります:
validate :suspitious_attachment
private
def suspitious_attachment
if ends_with? '.bat', '.com', '.exe', '.src', '.cmd'
errors.add(:base, I18n.t('errors.messages.suspitious_attachment', :value => attachment.path[-4..-1]))
end
end
def ends_with?(*args)
args.each do |arg|
return true if attachment.path.ends_with? arg
end
false
end
私からしてみれば:
<% if @issue.errors[:attachments].any? %>
<div class="clearfix error">
<% else %>
<div class="clearfix">
<% end %>
<label>
<%= image_tag 'icons/required.png', :alt => '*' %><%= t('labels.attachments') %>
</label>
<div class="input">
<div class="inputs-list">
<%= f.fields_for :attachments do |builder| %>
<%= render 'attachment_fields', :f => builder %>
<% end %>
<%= f.link_to_add t("actions.add_another_attachment"), :attachments, :class => "icon-attach" %>
<% if @issue.errors[:attachments].any? %>
<%= content_tag :span, t('errors.messages.blank'), class: 'help-inline error' %>
<% end %>
</div>
</div>
私のviews/layout/_error_messages.html.erbで
<% if target.errors.any? %>
<% if target.errors.any? %>
<div class="alert-message fade in warning">
<a class="close" href="#">×</a>
<p><%= target.errors.full_messages.first %></p>
</div><% end %>
私は試した:
errors[:base] << I18n.t('errors.messages.suspitious_attachment', :value => attachment.path[-4..-1]))
と
errors.add_to_base(I18n.t('errors.messages.suspitious_attachment', :value => attachment.path[-4..-1]))
翻訳ファイルに挿入しようとしました:
activerecord:
errors:
format: "%{message}"
誰かが私を助けることができますか?私の英語でごめんなさい。
ありがとう