Hi guys,
I am trying to send arrays using POST in rails 4.0. But instead of
sending
the whole array, it seems to send only the last value in the array.
I used the following code snippet:
uri = URI.parse('http://localhost:3000/abc')
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Post.new(uri)
request.set_form_data(set_params(args_hash))
response = http.request(request)
I also tried using ‘httpparty’ gem for the same, but it is also showing
an
error.
Can anyone point out as to what I am doing wrong? What is the best way
of
sending arrays using POST in Rails?
Thanks,
Kriti