我有以下代码,并且引发web事件不做它应该做的事情。我已经禁用了所有的扩展,以确保它不是什么东西。请帮助。如果我不能调试我的垃圾程序,我发现很难构建一个应用程序。帮助我! !
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){}
>>;
}
}
问题是您的事件名称包含一个数字。事件名称只能包含字母。
将2
从您的emit中的raise_event
调用和select
语句中删除,它将工作