无法获取的内容Coldfusion Builder 2 扩展对话框显示的标签
这是我的代码...
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过不使用 CDATA 块?在示例中,我看到开发人员没有使用 CDATA 块。
Have you tried it without the CDATA block? In the examples I see the developer did not use a CDATA block.