我有一个应用程序,有登录/注销功能。注销时,我正在清除实体变量。我如何强制应用程序重新运行初始规则并显示登录表单?
您可以通过精心制作初始规则的选择语句来再次运行初始规则。假设您在浏览器中运行应用程序,初始规则在web页面视图中触发,注销单击触发自定义注销web事件,下面是我要做的:
rule initial_rule {
select when web pageview "awesome*Regex(here)" or web logout
pre {
// do cool stuff here
}
{
// fire actions here
}
// postlude block of choice here
}