在 html 中编写 ruby file_field
<%= f.file_field :photo %>
我如何在 html 中写这个?我知道这是一个输入类型=“文件”,但我怎样才能放入:照片?我需要通过在 Rails 中将其写入 html 来自定义该字段。
<%= f.file_field :photo %>
How do I write this in html? I know that it's an input type="file" but how can I put in the :photo? I need to customise the field by writing it in html in rails.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
f 是对象名称,photo 是属性名称,所以你有
f is the oject name, photo is the attribute name, so you have