Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Passing array via hidden fields to rails

i have a hidden_tag like this in my form

 <%= f.hidden_field :loc , {:multiple => true}  %>

which renders to

 <input id="business_loc" multiple="multiple" name="business[loc][]" type="hidden" style="color: rgb(175, 175, 175); " value="">

currently am setting the business_loc value as a comma seperated string hoping rails would recognize when submit the form. But this is the value i got on the server side

      "loc"=>["80.22167450000006,13.0454044"] 

instead

      "loc"=>[80.22167450000006,13.0454044] 

how do i set the correct value in hidden field, so rails can understand it correctly.

like image 998
RameshVel Avatar asked Aug 24 '11 12:08

RameshVel


3 Answers

You need to use multiple hidden fields, one for each element of the array of values.

For example:

<input id="business_loc" multiple="multiple" name="business[loc][]" type="hidden" style="color: rgb(175, 175, 175); " value="80.22167450000006">
<input id="business_loc" multiple="multiple" name="business[loc][]" type="hidden" style="color: rgb(175, 175, 175); " value="13.0454044">

...if you need code to dynamically add these with JS, here's a jQuery example:

var field = $('<input id="business_loc" multiple="multiple" name="business[loc][]" type="hidden" style="color: rgb(175, 175, 175); " value="13.0454044">');
var form = $('#your-form-id');
form.append(field);
like image 182
Winfield Avatar answered Nov 09 '22 03:11

Winfield


I've found text_area's to make things work without having to add a bunch of hidden forms. Just set the value of the text area to something that looks like [1,31,51,61] and it should work, assuming in your model you have serialize :var

like image 42
epicgrim Avatar answered Nov 09 '22 04:11

epicgrim


I had this same problem recently. My solution was to handle it on the server side by simply splitting the array at the comma. In my case it looks like this:

  # thing_that_has_many_objects.rb     <-- showing custom setter method from the model because my example involves using a virtual attribute
  # params[object_ids] = ["1,2,3,4,5"] <-- from the form - note the format of array with only one element

  def objects=(object_ids)       
    split_array = object_ids[0].split(',') 
    split_array.each do |id|
      self.objects.build(object_id: id)
    end
  end
like image 22
sixty4bit Avatar answered Nov 09 '22 04:11

sixty4bit