首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

The entity name must immediately follow the '&' in the entity reference

2012-08-13 
The entity name must immediately follow the & in the entity reference.在flex中出现上述错误,是因为

The entity name must immediately follow the '&' in the entity reference.
在flex中出现上述错误,是因为不识别&标识符,需要将:

<mx:TextInput text="{(_feed.url && !_feed.isTemporary)?_feed.url:'Save Feed to generate URL'}" 

改成
<mx:TextInput text="{(_feed.url &amp;&amp; !_feed.isTemporary)?_feed.url:'Save Feed to generate URL'}" /


原文见:http://www.markledford.com/blog/2008/01/30/the-entity-name-must-immediately-follow-the-in-the-entity-reference/

热点排行