Testing nuance when calling a CFM-based custom tag using cfscript. #coldfusion #cfml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- 20220718 CustomTag CFScript "Nuance" | |
Blog: https://dev.to/gamesover/customtag-cfscript-nuance-4nig | |
Tweet: https://twitter.com/gamesover/status/1549111965523386368 | |
---> | |
<p>This executes the custom tag only one (1) time.</p> | |
<cf_helloCount> | |
<P>When called from cfscript, this CFM-based custom tag is executed twice.</p> | |
<cfscript> | |
cf_helloCount(); | |
</cfscript> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfparam name="request.timesCalled" default="0"> | |
<cfset request.timesCalled +=1> | |
<cfoutput> | |
<p>Hi! (Times called: #request.timesCalled#)</p> | |
</cfoutput> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment