Hidden field in rails form

前端 未结 2 978
野性不改
野性不改 2021-02-01 04:08

I have this form in a view in my project. I need to pass the task_id to a certain controller, but the log does not seem to be receiving the parameters. I don\'t kno

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-01 04:47

    Hi please test with following code to send hidden value in rails, I have tried and worked for one of my application :

    hidden_field_tag(name, value = nil, options = {}) public eg:

    <%= hidden_field_tag(:field_name,value=@offer_status)%>
    

提交回复
热议问题