I thought CFC's methods defined as functions in cfscript are output=false by default, but when I open the CFC in cfcexplorer.cfc (browser directly to the CFC), it says Output: enabled.
cfcexplorer.cfc's Bug?
|
I thought CFC's methods defined as functions in cfscript are output=false by default, but when I open the CFC in cfcexplorer.cfc (browser directly to the CFC), it says Output: enabled. cfcexplorer.cfc's Bug?
| ||||
|
feedback
|
|
Short answer: It doesn't matter.
This is different from CF tags' syntax, which, by default, output at least whitespace between the tags. In Long answer: It's the same as not specifying an output attribute.
The essence of Peter Boughton's answer is correct. It's neither wrapped in You can always combine a tag-based
This lets you specify an output and access on the Of course, for that function, if you remove the | |||
|
feedback
|
|
cfscript functions are a weird monkey. They are kind of both. You can't specify that they are output="false", but they are until you use a writeOutput(), but they are reported by cfcexplorer as being output="true". It is an odd issue I think the cfml advisory committee is looking at right now. | |||||
feedback
|
|
I'm not entirely certain, but my guess would be that script functions are the same as Setting the
However, I almost never use | |||
|
feedback
|