Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Formtastic 表单,如果有的话,我希望它在提示中显示一个链接。
f.input :link, hint: 'link here'
我发现解决这个问题的解决方案是使用f.object然后调用link它的属性,如下所示:
f.object
link
form do |f| f.inputs do f.input :link, hint: link_to(f.object.link, f.object.link) end f.actions do f.action :submit end end