考虑包含以下内容的 test.cfm 文件:
<html>
<body>
<cfif foo EQ bar>
<cfset test = "something" />
</cfif>
<p>Hello!</p>
</body>
</html>
在浏览器中运行时,该文件的输出源代码将如下所示:
<html>
<body>
<p>Hello!</p>
</body>
</html>
有没有什么办法解决这一问题?