Dumping variables from lists ColdFusion 9

134 Views Asked by At

I have this struct after I dump it like this:

<cfdump var="#currentInfo.answers#">

How can I access the value inside the LIST?

I need to compare that value with another variable in the future to allow me to do certain operations.

Struct

2

There are 2 best solutions below

3
On BEST ANSWER

The code below ought to do it:

currentInfo.answers["F0FF5FDC-D2C3-4D0F-D7D2D2886D5B430d"].LIST
0
On

Since the value is dynamic you'll need something like this:

currentKey="F0FF5FDC-D2C3-4D0F-D7D2D2886D5B430d";
currentInfo.answers[currentKey].LIST;