Skip to main content
April 29, 2013
Question

CF 10 - deserializeJSON

  • April 29, 2013
  • 1 reply
  • 531 views

Hi,

in CF 9 I could do

<cfset test = '[{"key1":"value1", "key2":12345, "key3":{"nestedkey1":"nestedvalue1", "nestedkey2":"nestedvalue2"}}]' />

<cfset deserialized = deserializeJSON(test) />

<cfdump var = "#deserialized#" />

and would get a coloured box with the various components of test. With CF 10 all I get is a string with the contents of test. What do I need to do differently in CF 10 to get the coloured box again and - most importantly - to be able to access the parts of the (what I thought it should be) struct resulting from deserializeJSON?

TIA.

This topic has been closed for replies.

1 reply

Fernis
Inspiring
April 30, 2013

Your code example works just fine with me. Tested it with CF10 under RHEL, all the latest updaters installed.

April 30, 2013

So it seems to be a problem with the Mac version.