如何访问 ColdFusion 中包含特殊字符的变量名

发布于 2024-11-15 01:53:30 字数 394 浏览 4 评论 0原文

例如,我有以下代码:

<cfhttp url="FileURL" method="get" result="HTTPResult" timeout="5" />

我想这样做:

<cfoutput>
    #HTTPResult.ResponseHeader.content-type#
</cfoutput>

但是 ColdFusion 会将破折号 - 视为运算符,并尝试从“type”中减去变量“HTTPResult.ResponseHeader.content” ,并且都不存在。有没有直接的方法来访问“内容类型”变量,或者我是否需要跳过一些麻烦才能从标头变量中取出它?

For example I have the following bit of code:

<cfhttp url="FileURL" method="get" result="HTTPResult" timeout="5" />

And I want to do this:

<cfoutput>
    #HTTPResult.ResponseHeader.content-type#
</cfoutput>

However ColdFusion will see the dash - as an operator and try to subtract variables "HTTPResult.ResponseHeader.content" from "type", and neither exists. Is there a direct way to access the "content-type" variable or do I need to jump through hoops to fetch it out of the header variable?

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

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

发布评论

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

评论(1

不顾 2024-11-22 01:53:30
HTTPResult.ResponseHeader["content-type"]
HTTPResult.ResponseHeader["content-type"]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文