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