On Wednesday, November 26, 2014 6:25:01 PM UTC+8, Vivek Sampara wrote:
>
> Your example has an error 
>
> Sorry, it's a typo. 

> { "id": "abracadabra",
> "data": "good" }*,(comma is missing)*
> { "id": "abracxxabra",
> "data": "goodsss" }
>
> Solution
>
> render json: JSON.parse(obj).each{|k,v| v.each{|arr| arr.reject!{|x| x == 
> "id" } } if v.class.to_s == "Array"}.to_json
>
Thanks but I found this a little bit ugly, so there is no way to use 
:except ? 

>
>
>
> On Wed, Nov 26, 2014 at 1:33 PM, Zhao Difei <[email protected] 
> <javascript:>> wrote:
>
>> Greetings all,
>>
>>   I have a json object (text) to render, formatted as:
>>
>> {
>> "a": "b",
>> "c":
>> [ { "id": "abracadabra",
>> "data": "good" }
>> { "id": "abracxxabra",
>> "data": "goodsss" } ]
>> }
>>
>>   How could exclude the id fields from rendering, I tried different 
>> combinations:
>>
>> render json: obj, except: [ c: [ "id" ] ]
>> render json: obj, include: [ c: [ except: "id" ] ]
>>
>>   none of them works, any ideas? Thanks in advance.
>>
>> Cheers,
>> Difei
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Ruby on Rails: Talk" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected] <javascript:>.
>> To post to this group, send email to [email protected] 
>> <javascript:>.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/rubyonrails-talk/2cd584c3-a4f0-4ced-9dfa-0b89f61f89d6%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/rubyonrails-talk/2cd584c3-a4f0-4ced-9dfa-0b89f61f89d6%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/632f30ab-4e74-443f-9d03-794cf72e1307%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to