无法获取的内容Coldfusion Builder 2 扩展对话框显示的标签

发布于 2024-11-20 13:49:38 字数 794 浏览 4 评论 0原文

这是我的代码...

<cfoutput>
<cfheader name="Content-Type" value="text/xml">  
<response showresponse="true" status="success">  
<ide handlerfile="deploySvnPart2.cfm">  
<dialog width="550" height="500" title="Amend Contents of Temp Dir"/>  
<input name="go" Label="Checked"  type="boolean" />

<cfsavecontent variable="moo" > 
<![CDATA[  
<p style="color:black;">Any HTML content</p>  
]]>
</cfsavecontent>  
<body>#moo#</body>  
<input name="go" Label="#len(moo)#"  type="boolean" />
</ide>
</response> 
</cfoutput>

当用户显示此页面时,他们只会显示 2 个输入,但不会显示 body 标记的内容。

它包含在 .cfm 页面中,并在用户从第一个屏幕(在 idg_config.xml 中定义)中进行一些初始选择时显示。

是否有任何原因导致 body 标记的内容不显示?

Here is my code...

<cfoutput>
<cfheader name="Content-Type" value="text/xml">  
<response showresponse="true" status="success">  
<ide handlerfile="deploySvnPart2.cfm">  
<dialog width="550" height="500" title="Amend Contents of Temp Dir"/>  
<input name="go" Label="Checked"  type="boolean" />

<cfsavecontent variable="moo" > 
<![CDATA[  
<p style="color:black;">Any HTML content</p>  
]]>
</cfsavecontent>  
<body>#moo#</body>  
<input name="go" Label="#len(moo)#"  type="boolean" />
</ide>
</response> 
</cfoutput>

When the user is shown this page they only get the 2 inputs showing, but not the contents of the body tag.

This is contained in a .cfm page and is shown upon the user making some initial chocies from the first screen (defined in the idg_config.xml)

Is there any reason the contents of the body tag wouldnt show up?

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

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

发布评论

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

评论(1

柠檬色的秋千 2024-11-27 13:49:39

您是否尝试过不使用 CDATA 块?在示例中,我看到开发人员没有使用 CDATA 块。

Have you tried it without the CDATA block? In the examples I see the developer did not use a CDATA block.

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