how do I change the label for each object in SerializeJSON

188 Views Asked by At

I'm trying to use ColdFusion's SerializeJSON() to return JSON data.

So far I have done this:

<cfset rows = [] />
<cfloop query="rsProducts">

    <!--- Create a row struct. --->
    <cfset row = {} />

    <!--- Add each column to our struct. --->
    <cfloop
    index="column"
    list="#rsProducts.columnList#"
    delimiters=",">
        <cfset row[ column ] = rsProducts[ column ][ rsProducts.currentRow ] />
    </cfloop>

    <!--- Append the row struct to the row array. --->
    <cfset arrayAppend( rows, row ) />
</cfloop>

<cfreturn SerializeJSON(rows, true)>   

This works fine and produces JSON like this:

[Object {PRICE: 89.99, PRODUCTSTATUS: 1, COUNTRY: US}, Object {PRICE: 110.50, PRODUCTSTATUS: 4, COUNTRY: UK}, Object {PRICE: 41.20, PRODUCTSTATUS: 1, COUNTRY: IN}]

However instead of a label of "Object" for each item, I'd like it to be "ProductItem" instead. It just makes it easier for me to deal with in jQuery later on.

How could I have it so it labels each object in JSON as "ProductItem"?

1

There are 1 best solutions below

1
On BEST ANSWER

You can loop over the data in this manner easily.

.success(function(data) {
    var ProductItem  = JSON.parse(data);
    $.each(ProductItem,function(key,value){
      console.log(value.PRICE +" "+ value.PRODUCTSTATUS + " " + value.COUNTRY);
    });