从自定义标签外部使用自定义标签变量

发布于 2024-10-19 07:57:11 字数 390 浏览 1 评论 0原文

好的,我认为这很简单,但我收到一条错误消息,告诉我该变量不存在。

这是我的自定义标签代码:

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

这是我调用自定义标签的页面:

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

那么如何使用在自定义标签内部设置的自定义标签之外的变量?

谢谢 :)

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 :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寄风 2024-10-26 07:57:11

您需要调用者范围

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

You want the Caller scope:

<cfset isBot = false>
<cfif find("bot", CGI.HTTP_USER_AGENT)>
<cfset Caller.isBot = true>               
</cfif> 
笑脸一如从前 2024-10-26 07:57:11
<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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文