ColdFusion CFParam Can Use Struct And Array Notation

Posted July 2, 2007 at 7:00 AM by Ben Nadel

Tags: ColdFusion

During Selene Bainum's CFUNITED presentation about using Structs and CFCs I noticed that she was using the ColdFusion CFParam tag with struct an array notation. I had always thought that the CFParam Name attribute could only take "valid" variable names (those strictly using dot notation), so it was news to me that it could handle stuff like this:

  • <!--- Param the Sessions struct. --->
  • <cfparam
  • name="REQUEST[ 'Sessions' ]"
  • type="array"
  • default="#ArrayNew( 1 )#"
  • />
  •  
  • <cfparam
  • name="REQUEST[ 'Sessions' ][ 1 ]"
  • type="struct"
  • default="#StructNew()#"
  • />
  •  
  • <cfparam
  • name="REQUEST[ 'Sessions' ][ 1 ][ 'Name' ]"
  • type="string"
  • default="Using Structures and CFCs"
  • />
  •  
  • <!--- Dump out param'd scope. --->
  • <cfdump
  • var="#REQUEST#"
  • label="CFParam With Struct And Array Notation"
  • />

CFDumping out the REQUEST scope, we can see that ColdFusion CFParam worked just as we expected, creating both nested struct and arrays:


 
 
 

 
ColdFusion CFParam Tag With Struct And Array Notation  
 
 
 

After the presentation was over, I asked Selene what version of ColdFusion she was running, believing that maybe this was a new feature in ColdFusion 8. She was indeed running ColdFusion 8 on her laptop, but she said this was not a new feature. I am running ColdFusion 7 on my laptop and as you can see from above, it works nicely. She did say that in the past she thinks there were issues with running CFParam on structs that did not yet exist, but that also seems to work fine for me:

  • <!---
  • Param the Event structure. The Event sturcture
  • does not exist yet, so ColdFusion will create
  • it for us.
  • --->
  • <cfparam
  • name="Event[ 'Name' ]"
  • type="string"
  • default="Using Structures and CFCs"
  • />
  •  
  • <!--- Dump out the param'd scope. --->
  • <cfdump
  • var="#Event#"
  • label="CFParam With Non-existing Structs"
  • />

CFDumping out the Event struct, which previously didn't exist, we can see that ColdFusion not only creates the Event struct but also creates the sub-struct properly:


 
 
 

 
ColdFusion CFParam Tag Non-Existent Struct Notation  
 
 
 

Cool stuff.


You Might Also Be Interested In:



Reader Comments

Jul 2, 2007 at 9:09 AM // reply »
319 Comments

I'd recommend against this (specifically the _last_ thing you did). CF has had the ability to 'auto-make' structs for a while, and I've seen issues doing this in the past. I always recommend folks make structs the normal way - by using structNew first. You can do this in a cfparam too of course. The only exception is structget, which no one really uses anyway.


Jul 2, 2007 at 9:13 AM // reply »
319 Comments

For a good example of how it breaks, run your code, and then run it with ?event=1 in the URL.


Jul 2, 2007 at 9:20 AM // reply »
11,238 Comments

@Ray,

Yeah, I am not a fan of auto-struct creation. In fact, I never use it. I think it is actually more dangerous than it is good. But, I still was surprised that this sort of notation worked in CFParam.

Ha ha, yeah, I never thought of that (passing the string value via URL and then trying to treat it as a struct). I haven't even tested it, but I am sure it throws the "try to treat a scalar value as an object with members" error... who doesn't get tired of that one :)


Jul 20, 2007 at 1:39 PM // reply »
11 Comments

What about doing something like the following, given the new CF8 syntax?

<cfparam name="event" type="string" default="{Name: 'Using Structures and CFCs'}">

Is that equally bad? I haven't tried it, but I don't think you would run into an issue appending ?event=1 to your query string.


Jul 20, 2007 at 1:46 PM // reply »
11,238 Comments

@Adam,

You can't put implicit struct notation directly into an attribute :( Unless they fix that by the CF8 product release.


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 17, 2013 at 7:42 PM
HashKeyCopier - An AngularJS Utility Class For Merging Cached And Live Data
Ben - thanks so much for posting these Angular articles and findings, they've been a huge help towards learning one of the more 'complex' JavaScript frameworks out there (IMO). I have been using Angu ... read »
May 16, 2013 at 5:01 PM
UPDATE: Parsing CSV Data Files In ColdFusion With csvToArray()
Your code was the closest thing I've found to obtaining some direction for converting ISO fields to values that CF can translate properly. Thank you for posting! ... read »
May 15, 2013 at 10:37 PM
Very Simple Pusher And ColdFusion Powered Chat
hi id making plz easy ... read »
May 15, 2013 at 6:07 PM
Making SOAP Web Service Requests With ColdFusion And CFHTTP
Ben, you once again saved my bacon at work. Thank you, thank you, thank you! ... read »
May 15, 2013 at 4:15 PM
What If All User Interface (UI) Data Came In Reports?
@Josh, Thanks! @Ben, I definitely recommend the David West book "Object Thinking" I've been quoting from. It goes deeply into the philosophy and history of OO programming. His breadth ... read »
May 15, 2013 at 11:36 AM
Ask Ben: Print Part Of A Web Page With jQuery
I found this helpfull when you need to keep (refresh) the original parent page after closing the iframe child print dialog (Hoping you're not using a form at this time so it won't submit again): On ... read »
May 14, 2013 at 7:13 PM
What If All User Interface (UI) Data Came In Reports?
@Jonah, If there's any books you'd recommend on the subject of domain modelling, I'd love to hear it. I just downloaded the free PDF of "Domain Driven Design Quickly". Figured I'd give it ... read »
May 14, 2013 at 6:57 PM
The UX Of Prototyping: Low-Fidelity Is The New High-Fidelity
@Phillip, I'm not sure I follow what you mean? Are you saying that you looked at the list of widgets provided by the jQuery UI and let that be your style guide? ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools