开发者

Why is simple_form not creating my fields and creating hidden fields instead?

开发者 https://www.devze.com 2023-02-21 21:29 出处:网络
This is my ruby code: <%= simple_form_for([@video, @video.comments.new]) do |f| %> <% f.association :comment_title %>

This is my ruby code:

<%= simple_form_for([@video, @video.comments.new]) do |f| %>
  <% f.association :comment_title %>
  <% f.input :body %>
  <% f.button :submit %>
<% end %>

This is the generated HTML markup:

<form accept-charset="UTF-8" action="/videos/485/comments" class="simple_form comment" id="new_comment" method="post">
    <div style="margin:0;padding:0;display:inline">
        <input name="utf8" type="hidden" value="✓">
        <input name="authenticity_token" type="hidden" value="55xSU8JUe1SgipjAkAEvCvidFdJY3hv8Qz5VBqUSrdE=">
    </div>
    <input class="button" id="comment_submit" name="commit" type="submit" value="Create Comment">
</form>

Obviously it's not creating the :body in开发者_Python百科put field and the association select list correctly. Why is this and how can I fix it?

Btw, a video has many comments, and a comment belongs to video. Also, a comment_title has many comments, and a comment belongs to a video. Comment_title is generated with virtual attributes.

Please let me know if there is any other code you would like to see.


Both of these are because of choices in your rails application. The first is that you have selected to configure the application to use utf8 for character encoding. The second is because by default the application is setup to protect against cross site request forgery attacks. The authenticity token ensures that the response coming back to the server when the user submits the form is actually from you and not some other source just watching your traffic and posting away to mess with your database.


Ok so the problem was that I needed to add the "=" to <%= in my form elements.

0

精彩评论

暂无评论...
验证码 换一张
取 消