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:
Launch code in new window » Download code as text file »
CFDumping out the REQUEST scope, we can see that ColdFusion CFParam worked just as we expected, creating both nested struct and arrays:
| | | | ||
| | ![]() | | ||
| | | |
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:
Launch code in new window » Download code as text file »
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:
| | | | ||
| | | |||
| | | |
Cool stuff.
Download Code Snippet ZIP File
Comments (5) | Post Comment | Ask Ben | Permalink | Other Searches | Print Page
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.
Posted by Raymond Camden on Jul 2, 2007 at 9:09 AM
For a good example of how it breaks, run your code, and then run it with ?event=1 in the URL.
Posted by Raymond Camden on Jul 2, 2007 at 9:13 AM
@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 :)
Posted by Ben Nadel on Jul 2, 2007 at 9:20 AM
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.
Posted by Adam on Jul 20, 2007 at 1:39 PM
@Adam,
You can't put implicit struct notation directly into an attribute :( Unless they fix that by the CF8 product release.
Posted by Ben Nadel on Jul 20, 2007 at 1:46 PM