在客戶幫手中,我需要添加一些單選按鈕和偶爾的圖像。rails可以自定義助手使用其他助手嗎? (image_tag,radio_button_tag等?)
我可以通過直接HTML或使用content_tag(:input ...)蠻力,但有沒有任何方法可以使用現有的幫助器,如radio_button_tag內部而不是幫助器方法中的content_tag?從我的項目
def apply_button(offer)
... a lot of code here ...
link_to span.html_safe, offer_applications_path(offer), method: :post, remote: true, id: 'offer-apply-button'
end