如何强制重新运行应用程序的初始规则?

时间:2011-09-22 03:05:39

标签: krl

我有一个具有登录/注销功能的应用。注销后,我正在清除实体变量。如何强制应用重新运行初始规则并显示登录表单?

1 个答案:

答案 0 :(得分:1)

您可以通过仔细制作初始规则的select语句来重新运行初始规则。假设您在浏览器中运行应用程序,初始规则将在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
}