我是一个haml新手
我试图找出如何为“id”创建一个html“输入”字段,只读使用haml。
html,应该读这样的东西(不是精确的反映)
但是readonly值永远不会通过
%h2 Sections
= semantic_form_for @section do |f|
= f.inputs do
= f.input :id, :readonly => "true" <-----problem
= f.input :title
我缺少什么
答案 0 :(得分:4)
尝试:
= f.input :id, input_html: { readonly: true }