Check_box и radio_button для form_helper в рельсах - PullRequest
0 голосов
/ 17 октября 2019

Я просмотрел документацию по рельсам и не смог найти нигде, который бы дал мне информацию о check_box или radio_button для работы с объектами модели.

    = f.radio_button(:recurring_status, true)
    = f.label :recurring_status, "Yes?"
    = f.radio_button(:recurring_status, false)
    = f.label :recurring_status_false, "No?"

Я пробовал это с radio_button, но значение просто не передается из формы в params. То же самое с check_box.

Может кто-нибудь объяснить мне, почему это происходит, а также почему rails не указал использование check_box и radio_button с объектами модели.

Кроме того,

<%= check_box_tag(:pet_dog) %>
<%= label_tag(:pet_dog, "I own a dog") %>
<%= check_box_tag(:pet_cat) %>
<%= label_tag(:pet_cat, "I own a cat") %>

<input id="pet_dog" name="pet_dog" type="checkbox" value="1" />
<label for="pet_dog">I own a dog</label>
<input id="pet_cat" name="pet_cat" type="checkbox" value="1" />
<label for="pet_cat">I own a cat</label>

Это пример, приведенный в официальной документации, оба флажка имеют то же значение, что и «1». Довольно сложно понять, что здесь происходит.

1 Ответ

0 голосов
/ 17 октября 2019

https://api.rubyonrails.org/v5.1.7/classes/ActionView/Helpers/FormOptionsHelper.html проверить это.

    collection_check_boxes(:post, :author_ids, Author.all, :id, :name_with_initial)

=>     <input id="post_author_ids_1" name="post[author_ids][]" type="checkbox" value="1" checked="checked" />
       <label for="post_author_ids_1">D. Heinemeier Hansson</label>
       <input id="post_author_ids_2" name="post[author_ids][]" type="checkbox" value="2" />
       <label for="post_author_ids_2">D. Thomas</label>
       <input id="post_author_ids_3" name="post[author_ids][]" type="checkbox" value="3" />
       <label for="post_author_ids_3">M. Clark</label>
       <input name="post[author_ids][]" type="hidden" value="" />

    collection_radio_buttons(:post, :author_id, Author.all, :id, :name_with_initial)

=>    <input id="post_author_id_1" name="post[author_id]" type="radio" value="1" checked="checked" />
      <label for="post_author_id_1">D. Heinemeier Hansson</label>
      <input id="post_author_id_2" name="post[author_id]" type="radio" value="2" />
      <label for="post_author_id_2">D. Thomas</label>
      <input id="post_author_id_3" name="post[author_id]" type="radio" value="3" />
      <label for="post_author_id_3">M. Clark</label>

    collection_select(:post, :category_id, Category.all, :id, :name, {disabled: -> (category) { category.archived? }})

=>   <select name="post[category_id]" id="post_category_id">
     <option value="1" disabled="disabled">2008 stuff</option>
     <option value="2" disabled="disabled">Christmas</option>
     <option value="3">Jokes</option>`enter code here`
     <option value="4">Poems</option>
     </select>
...