我在 Ubuntu 14.04.3 LTS 上运行 Lucee 4.5.1.023。当我创建 .cfm 文件并执行 cfoutput 或 cfdump 时,输出与您预期的一样。但是,当我在 CFC 中使用函数并将函数设置为 output="true" 并执行 cfoutput 或 cfdump 时,结果是以下“XML Parsing Error: not well-formed”。
<cfcomponent>
<cffunction name="test" access="remote" output="true">
<cfoutput>#now()#</cfoutput>
</cffunction>
</cfcomponent>
如果 output="false" 并且根本没有生成输出,则返回 XML Parsing Error。例如
<cfcomponent>
<cffunction name="test" access="remote" output="false">
<cfset var a = 1>
</cffunction>
</cfcomponent>
任何帮助或建议将不胜感激。