在 html 中编写 ruby​​ file_field

发布于 2024-11-29 18:23:23 字数 142 浏览 3 评论 0原文

<%= 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

窝囊感情。 2024-12-06 18:23:23

f 是对象名称,photo 是属性名称,所以你有

id="object_photo"
name="object[photo]"

<input type="file" size="20" name="object[photo]" id="object_photo">

f is the oject name, photo is the attribute name, so you have

id="object_photo"
name="object[photo]"

<input type="file" size="20" name="object[photo]" id="object_photo">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文