资 源 简 介
Takes a Coldfusion JSON return in the following format:
{"MyJSON": {"COLUMNS": ["Col1", "Col2"], "DATA": [["Data 1 for Col 1", "Data 1 for Col 2"], ["Data 2 for Col 1", "Data 2 for Col 2"]]}}
and returns it in the following format:
{"MyJSON": {"Col1": "Data 1 for Col 1", "Col2": "Data 1 for Col 2"},{"Col1": "Data 2 for Col 1", "Col2": "Data 2 for Col 2"}}
Which is more readable and easier to parse for Javascript