当我在KRL规则中编写条件操作块时,我总是忘记'then'关键字。以下是正确的语法:
rule with_conditions {
select when pageview ".*"
pre {
cheese = "Camembert";
}
if (cheese like re/bert/) then {
notify("Odd Cheese", "#{cheese} is unusual.");
}
fired {
raise explicit event "odd_cheese";
}
}
为什么是"那么"?没有它不是很清楚吗?
可能是因为该语言的编写者认为添加then
更自然。