What Does ActiveRecord::MultiparameterAssignmentErrors Mean?

后端 未结 7 634
[愿得一人]
[愿得一人] 2020-12-15 22:46

I have a rails form with a datetime_select field. When I try to submit the form, I get the following exception:

ActiveRecord::MultiparameterAssignmentErrors          


        
7条回答
  •  攒了一身酷
    2020-12-15 23:13

    This error can also occur with webrat/cucumber when filling in form data using a table.

    eg this doesn't work:

    When I fill in the following:
      | report_from_1i | 2010     |
      | report_from_2i | January  |
      | report_from_3i | 1        |
      | report_to_1i   | 2010     |
      | report_to_2i   | February |
      | report_to_3i   | 1        |
    

    but this does:

    When I fill in the following:
      | report_from_1i | 2010 |
      | report_from_2i | 1    |
      | report_from_3i | 1    |
      | report_to_1i   | 2010 |
      | report_to_2i   | 2    |
      | report_to_3i   | 1    |
    

提交回复
热议问题