warning: unable to bind to property '..' on class '..' (class is not an IEventDispatcher) 莫名其妙的

之前碰到过这个问题,主要是因为绑定问题,就是说绑定不成功,原因可能是对象的引用等,现今天这个我没辙了,先记下来

新建一个application ,<s:Label text="{TombModel.tt}"/>只显示个文本就好,然后TombModel是一个类文件,只定义几个静态属性

public class TombModel
    {

        //[Bindable]
        //public static var list:ArrayCollection=new ArrayCollection();

        [Bindable]
        public static var ttasdf:String="adsfa";
        [Bindable]
        public static var tt:String="adsfa";

        public static var aa:*;

        public function TombModel():void{
        }
    }

此时不会报错,但是,注释去掉,显示绑定的静态list后,直接报错,然后把list类型改成字符又不再报错,纠结了,哪里的问题……

再测试:只有当类型为ArrayCollection时才报错,Dictionary,Object,Array引用型的都没有问题,赋值型也OK,

那绑定ArrayCollection这个有哪里不同呢,头疼,晕了,先放着

warning: unable to bind to property '..' on class '..' (class is not an IEventDispatcher) 莫名其妙的

时间: 2024-11-05 11:48:13

warning: unable to bind to property '..' on class '..' (class is not an IEventDispatcher) 莫名其妙的的相关文章

ERROR: unable to bind listening socket for address &#39;127.0.0.1:9000&#39;: Address already in use (98)

刚安装完PHP,启动时报错: # /etc/init.d/php-fpm start Starting php-fpm [15-Apr-2017 13:21:13] ERROR: unable to bind listening socket for address '127.0.0.1:9000': Address already in use (98) [15-Apr-2017 13:21:13] ERROR: FPM initialization failed failed 解决方法: #

日志大量警告warning: unable to look up public/pickup: No such file or directory!

日志服务器大量警告: warning: unable to look up public/pickup: No such file or directory 报错原因: 与Debian Linux VPS 6,你可能得到Sendmail MTA违约.如果你已经安装和配置后缀这可能导致错误.如果您执行"echo|mail your.com"在本地配置(your.com)你会看到下面的错误出现:postdrop:warning: unable to look up public/picku

unable to bind listening socket for address &#39;127.0.0.1:9090&#39;: Address already in use (98)

unable to bind listening socket for address '127.0.0.1:9090': Address already in use (98) php-fpm 启动错误 9090 端口被占用,所以查看端口被谁占用 sudo netstat -lntup | grep 9090 这个命令才好使 然后pkill掉它 然后重启,OK了 unable to bind listening socket for address '127.0.0.1:9090': Addr

swift CoreData中CoreData: warning: Unable to load class named问题

问题 用swift创建CoreData项目时,操作CoreData Modal时,出现下面错误 CoreData: warning: Unable to load class named 'Book' for entity 'Book'. Class not found, using default NSManagedObject instead. 解决办法 1. 在book.swift 中添加 @objc(Book) 2. 修改CoreData模板 /Applications/Xcode.ap

fiddler启动报错Unable to bind to port [8888],ErrorCode:10106

启动运行fiddler 报错,提示Unable to bind to port [8888],ErrorCode:10106 解决方式: 使用Fiddler或其他类似的监听工具出现这种错误时, Unable to bind to port [8888]. ErrorCode: 10106cmd下面执行命令 netsh winsock reset  然后重启电脑就可以了 原文地址:https://www.cnblogs.com/lxs1314/p/8257824.html

Loader与URLLoader,SWFLoader

(1) Loader        Loader 类可用于加载 SWF 文件或图像(JPG.PNG 或 GIF)文件. 使用 load() 方法来启动加载. 被加载的显示对象将作为 Loader 对象的子级添加.        (2)URLLoader        URLLoader 类以文本.二进制数据或 URL 编码变量的形式从 URL 下载数据. 在下载文本文件.XML 或其它用于动态数据驱动应用程序的信息时,它很有用.URLLoader 对象会先从 URL 中下载所有数据,然后才将数据

salt-master IPC文件的一次报错

最近公司的两个salt-master要合并管理,所以我就将其中一个master做了个salt-syndic,在安装"salt-syndic"的过程中自动升级了salt-master和salt-minion,并重启了master和syndic,其中发生了一些位置的问题,导致salt-master的"/var/run/salt/master/publish_pull.ipc"文件损坏,导致salt无法进行正常启动和通讯,而且这个文件无法删除,最终我修改了文件夹的名字重新

saltstack master无法收到minion

遇到的问题如下: [email protected]:/etc/salt# salt-key -LAccepted Keys:Unaccepted Keys:Rejected Keys: [email protected]:/etc/salt# salt-master -l debug[DEBUG   ] Reading configuration from /etc/salt/master[DEBUG   ] Using cached minion ID from /etc/salt/mini

UWP开发之Mvvmlight实践四:{x:bind}和{Binding}区别详解

{x:bind}是随着UWP被推出而被添加的,可以说是Win10 UWP开发专有扩展.虽然 {x:Bind} 缺少{Binding} 中的一些功能,但它运行时所花费的时间和使用的内存量均比 {Binding} 要少,且支持更好的调试. 参照网址:{x:Bind} 标记扩展,GitHub微软UWP实例之XamlBind 1,{x:Bind} 基本原理 在 XAML 加载时,{x:Bind} 将转换为你所需的绑定对象,此对象将从数据源上的某一属性中获取相关值.绑定对象可以配置为观察数据源属性值的更改