我想在标签后追加123
,
但它没有用。
= f.label(:server_information, "123") do
= f.radio_button :server_information, server_type , class: "need_check"
= server_type
答案 0 :(得分:0)
你不能试试这个:
= f.label :server_information.to_s+"123"
这会产生以下标签:
Server Information 123
告诉我这是你想要的还是它帮你解决了
答案 1 :(得分:0)
= f.label(:server_information) do
123
= f.radio_button :server_information, server_type , class: "need_check"
= server_type