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?
|
I want to render a simple JSON from an array.
which returns:
but I don't want the JSON. The only part I want is:
Is there a simple way?
| ||||
|
feedback
|
|
Yep:
Better:
| |||
|
feedback
|
render array? – keymone Feb 22 at 15:29