在Mxml的对象属性中使用&&"和"运算符

 

如:

 

  
    
< mx:Label text ="Test" visible ="{ boolVar1 && boolVar2 }" />

 

会报错 : -> The entity name must immediately follow the '&' in the entity reference.

正确的写法如下: -> 使用HTML中相关字符的完全限定符.

 

  
    
< mx:Label text ="Test" visible ="{ boolVar1 & a m p;& a m p; boolVar2 }" /> //把amp中间的空格去掉,因为我不加空格,页面就直接解析成&了

 

附:

最全的HTML特殊字符列表 

 

 

 

你可能感兴趣的:(xml)