Javascript Object Notation (JSON) Kinky-Style

Posted June 26, 2006 at 9:32 AM by Ben Nadel

Tags: ColdFusion, Javascript / DHTML, AJAX

In an effort to learn AJAX and Javascript Object Notation (JSON), I am converting the CFJSON encoder into something that will fit into my architecture and standards; that's not meant to be snooty, I just have certain coding standards (such as capitalization and white-space utilization) that I like to follow. One of the things that I ended up changing was the conversion of the ColdFusion query to Javascript. The conversion is very interesting. Inherently, CFJSON converts the ColdFusion query into a mirrored Javascript object of arrays. In ColdFusion, if you refer to a query via structure notation, you have to put the column name first, then the row:

  • qTest[ "id" ][ 5 ]

This seems unnatural to me. I never liked it in ColdFusion and I don't care for it in Javascript. And so, I have converted my ColdFusion queries into Javascript arrays of structures:

  • qTest[ 5 ].id

This seems a much more natural representation of Javascript data types; however, when I dumped out the results, I can see that not only do they perform differently, they look very different. Take of example the following query:

  • qTest = QueryNew( "id, name, rating" );
  •  
  • QueryAddRow( qTest );
  • qTest[ "id" ][ qTest.RecordCount ] = 3;
  • qTest[ "name" ][ qTest.RecordCount ] = "Sarah";
  • qTest[ "rating" ][ qTest.RecordCount ] = 9;
  •  
  • QueryAddRow( qTest );
  • qTest[ "id" ][ qTest.RecordCount ] = 4;
  • qTest[ "name" ][ qTest.RecordCount ] = "Julia";
  • qTest[ "rating" ][ qTest.RecordCount ] = 8;
  •  
  • QueryAddRow( qTest );
  • qTest[ "id" ][ qTest.RecordCount ] = 6;
  • qTest[ "name" ][ qTest.RecordCount ] = "Kat";
  • qTest[ "rating" ][ qTest.RecordCount ] = 6;
  •  
  • QueryAddRow( qTest );
  • qTest[ "id" ][ qTest.RecordCount ] = 9;
  • qTest[ "name" ][ qTest.RecordCount ] = "Laura";
  • qTest[ "rating" ][ qTest.RecordCount ] = 4;
  •  
  • QueryAddRow( qTest );
  • qTest[ "id" ][ qTest.RecordCount ] = 11;
  • qTest[ "name" ][ qTest.RecordCount ] = "Heather";
  • qTest[ "rating" ][ qTest.RecordCount ] = 7;

When converted via CFJSON, you get:

  • {"recordcount":5,"columnlist":"ID,NAME,RATING","data":{"ID":[3,4,6,9,11],"NAME":["Sarah","Julia","Kat","Laura","Heather"],"RATING":[9,8,6,4,7]}}

When converted through my ColdFusion ToJavascript() method, you get:

  • {"recordcount":5","columnlist":"ID,NAME,RATING","data":{[{"rating":9,"name":"Sarah","id":3},{"rating":8,"name":"Julia","id":4},{"rating":6,"name":"Kat","id":6},{"rating":4,"name":"Laura","id":9},{"rating":7,"name":"Heather","id":11}]}}

My version, while more natural, must transport much more data since the column names are repeated for every "row" of the query. I don't like all the additional transfer, but I do like the way I handle the query conversion. For the moment, I am going to keep my method. I am at peace since I will most likely not be handling such large amounts of data and the size difference should be insignificant. But I can certainly see that with larger data sets, this will quickly add up and become very large.



Reader Comments

Apr 10, 2007 at 1:46 PM // reply »
1 Comments

Ben,

Did you modify the CFJSON file. I tend to not want to modify the core files to any framework I use (if I didn't write it).

Joe


Apr 10, 2007 at 11:12 PM // reply »
11,246 Comments

@Joe,

With something like this, I tend to write things from the ground up. I am HUGE fan of reinventing the wheel. Plus, I have very specific formatting rules that I like to follow so modifying someone else's file tends to irk me a bit.

Of course, writing from the ground up or any modifications for that matter are much more prone to error :)


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 25, 2013 at 10:01 PM
My Experience With AngularJS - The Super-heroic JavaScript MVW Framework
@Avi, Really glad to help! @Jaredwilli, I'm finding a this image hits home with a lot of people :) Hopefully we can all work through the rough patches together! @Prateek, AngularJS has error ... read »
May 25, 2013 at 9:53 PM
Nested Views, Routing, And Deep Linking With AngularJS
@Mrsean2k, I'm glad I could help! I haven't been able to keep up with the ui-router stuff. I keep saying that I'll carve out time, but I just haven't gotten to it :( ... read »
May 25, 2013 at 9:49 PM
What If All User Interface (UI) Data Came In Reports?
@Jonah, Thanks for the book recommendations. I am looking them up right now. I can see that Object Thinking is available for the Kindle App - sweet! Also, I just recently heard Martin Fowler on the ... read »
May 25, 2013 at 9:41 PM
HashKeyCopier - An AngularJS Utility Class For Merging Cached And Live Data
@Chris, I'm super excited to hear that my posts are helpful. I am also loving AngularJS; but, it definitely has some caveats and some odd behaviors and some things that just don't seem to "wor ... read »
May 25, 2013 at 9:36 PM
Ask Ben: Manually Enforcing Basic HTTP Authorization In ColdFusion
@Adam, @Jason, After reading these comments, I double-checked my latest implementation and I am happy to report that I am using listFirst() and listRest(). ... read »
May 25, 2013 at 9:31 PM
Using "//" And ".//" Expressions In XPath XML Search Directives In ColdFusion
@Daxesh, I am not sure I understand the question about the current node. If you already have a reference to the current node, why would you need to query for it? As for parent node, I believe that ... read »
May 25, 2013 at 10:08 AM
Using "//" And ".//" Expressions In XPath XML Search Directives In ColdFusion
@Ben, my question is that i want the current node with its tag and its parent node. i just want only that data. So, give me the solution for that. and remember solution is working on " xpath 1.0 ... read »
May 25, 2013 at 10:01 AM
Using "//" And ".//" Expressions In XPath XML Search Directives In ColdFusion
hey ben, i want get my current node tag and also want the root node tag withing. So, how can i fix it.. ! ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools