cfscript可以创建<cfxml>吗?

Can <cfxml> be created in cfscript?

有没有办法在cfscript中使用?我在网上找不到一个简单的例子。我有一个使用 cfscript 构建的 .cfc 文件,我正在尝试使用 cfxml。

我有一个 XMLContent 变量,我尝试了下面的代码。

cfxml variable="myXML" {
    WriteOutPut(#XMLContent#);
}

它在我的 cfxml 声明中返回:function keyword is missing in FUNCTION declaration.

你可以做到这一点。

cfxml (variable="myXML") {
    WriteOutPut(XMLContent);
}

但我怀疑你正在尝试

  <cfscript>
  myXML = XMLParse(XMLContent);
  </cfscript>