当前位置: 代码迷 >> Web前端 >> 为何会出现警告:Data binding will not be able to detect assignments to “*”
  详细解决方案

为何会出现警告:Data binding will not be able to detect assignments to “*”

热度:537   发布时间:2012-10-28 09:54:44.0
为什么会出现警告:Data binding will not be able to detect assignments to “**”
当我们做类的绑定时,有可能会出现Data binding will not be able to detect  assignments to 的错误,为什么呢?
首先我们了解一下FLEX编译文件的步骤:
flex在编译mxml文件的时候,会先编译非<mx:script>那包含的那一部分,在这个时候找不到这个变量就会报个worning,如果你在变量上有[Bindable]标记,那么就会先跳过编译,等程序运行时再取。
在class上面加[Bindable]等同于给所有pulich属性和get/set方法加上[Bindable],这是简化写法。
但是注意,public var myTest:Test = new Test (0,2); 如果myTest不加[Bindable],就说明这个mxml里的myTest属性是没有绑定的。类内部属性的绑定特性不能代表类实例的绑定特性。

转自http://ria.args.cn/?p=341
  相关解决方案