4

我有以下代码,并且引发网络事件并没有做它应该做的事情。我已禁用所有扩展程序以确保它不存在。请帮忙。如果我无法调试我的垃圾,我发现很难构建一个应用程序。帮我!!!

dispatch {
    // Some example dispatch domains
    // domain "example.com"
    domain "google.com"
}

global {

}
rule temp_rule is active{
    select when pageview ".*"
    pre{

    }
    {
        notify("111",'123');

        emit<<
            var tempapp = KOBJ.get_application("a710x19");
            tempapp.raise_event("temp2");
        >>;
    }
}

rule temp2 is active{
    select when web temp2
    pre{

    }
    {
        notify("222",'<div id="fbp_fblogo">123</div>');
        emit<<
            try{
                console.log("TEMP2'd");  
            }catch(e){}  
        >>;
    }
}
4

1 回答 1

4

问题是您的事件名称包含一个数字。事件名称只能包含字母。

2从您raise_event的发出和您的声明中的调用中删除select它,它将起作用。

于 2011-04-05T07:37:42.487 回答