formtastic - how to prepopulate a string input with a value

后端 未结 2 963
甜味超标
甜味超标 2020-12-28 13:46

I\'m building an app, where users can give comments by just leaving their email to the comment.

I want them to be able to register directly from there, by a link wit

2条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-28 14:08

    Yup, you got the right answer all by yourself! Formtastic's rdoc is a mess, but we're working on it. Another option if you want this purely at a view level is to use the :input_html option, which gives you direct access to HTML attributes of the input tag:

    f.input :email, :input_html => { :value => params[:email] }
    

提交回复
热议问题