I want to render a simple JSON from an array.

array = ["valueid",true]
render :json=>array

which returns:

{"json":["valueid",true]}

but I don't want the JSON. The only part I want is:

["valueid",true]

Is there a simple way?

link|improve this question

render array ? – keymone Feb 22 at 15:29
header must be json type – gkaykck Feb 22 at 15:38
feedback

1 Answer

up vote 1 down vote accepted

Yep:

get :index do
  [:id, 4].to_json
end

Better:

get :index, :provides => :json do
   my_array.to_json
end
link|improve this answer
absolutely terrific :D, thanks buddy – gkaykck Feb 22 at 16:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.