Ruby on rails attachment_field 翻译标签
Posted
技术标签:
【中文标题】Ruby on rails attachment_field 翻译标签【英文标题】:Ruby on rails attachment_field translated label 【发布时间】:2022-01-17 05:33:58 【问题描述】:我有一个浏览器一直以葡萄牙语显示的输入字段。即使用户在巴西,我也确实需要用英语显示。有什么帮助吗?
代码:
<%= f.attachment_field :brand, direct: true, multiple: false, presigned: true, class: 'form-control uploadable' %>
在我看来:
有没有办法翻译我所有的f.attachment_field
?
【问题讨论】:
【参考方案1】:这就是我所做的
<div id="yourBtn" onclick="getFile()">Upload Images</div>
<div id="choose_button" style='height: 0px;width: 0px; overflow:hidden;'>
<%= form.file_field :images, :multiple => true, id: "upfile", :onchange => "sub(this)"%>
</div>
</div>
和css
#yourBtn
font-family: calibri;
width: 200px;
padding: 10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border: 1px dashed red;
text-align: center;
background-color: black;
cursor: pointer;
color: gold;
#choose_button
height: 0px;
width: 0px;
overflow:hidden;
看起来像这样
【讨论】:
以上是关于Ruby on rails attachment_field 翻译标签的主要内容,如果未能解决你的问题,请参考以下文章
应用程序错误:Heroku,Ruby on Rails 4,警告:rails_12factor,vendor / bundle,no Procfile
ruby on rails:undefined方法`_path'
Ruby on Rails 3 表单中的 _snowman 参数有啥用?
Elasticsearch 的_msearch介绍及在ruby on rails 中的使用