2012-09-07 45 views
2

使用CFXML,我得到這個錯誤:爲什麼CFXML不像&?

An error occured while Parsing an XML document. The entity name must immediately follow the '&' in the entity reference.

轉儲顯示像這樣使用&號:

thing-&ampamp;-things

下面的代碼:

<cfxml variable="xml"> 
    <cfoutput> 
     <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> 
      #xml# 
     </urlset> 
    </cfoutput> 
</cfxml> 

爲什麼不CFXML像這種&符號格式,他們應該在什麼格式?

+1

是否需要雙重編碼? '& amp;'? –

回答

5

在數據周圍使用xmlFormat(),它應該修復您的問題。

相關問題