Ok, I thought this would be simple but I'm getting an error telling me the variable does not exist.

Here is my custom tag code:

<cfset isBot = false>
<cfif find("bot", CGI.HTTP_USER_AGENT)>
<cfset isBot = true>               
</cfif> 

Here is my page calling the custom tag:

<cf_checkBot>
<cfif isBot> 
Yes This Is A Bot!
</cfif>

So how do I use a variable outside of a customtag that was set inside of a custom tag?

Thanks :)

有帮助吗?

解决方案

You want the Caller scope:

<cfset isBot = false>
<cfif find("bot", CGI.HTTP_USER_AGENT)>
<cfset Caller.isBot = true>               
</cfif> 

其他提示

<cfset isBot = false>
<cfif find("bot", CGI.HTTP_USER_AGENT)>
<cfset **caller.**isBot = true>               
</cfif> 

You use the caller scope.

It might be better to use a function instead of a custom tag though.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top