Does form_tag work with Simple_form?

后端 未结 4 1329
别那么骄傲
别那么骄傲 2020-12-12 22:11

I have a form that is using form_tag and not sure how to use it with the simple_form gem. This is how my form looks:

<%= form_tag create_mult         


        
4条回答
  •  旧巷少年郎
    2020-12-12 22:59

    simple_form is a wrapper around form_for, not form_tag. You can use simple_form_for instead of form_for, but form_tag just creates

    tags with specified content, it is not relevant to simple form.

提交回复
热议问题