bryan31 / liteflow-homepage

the doc for LiteFlow framwork
MIT License
19 stars 164 forks source link

真的看不懂文档 #57

Open wordscode opened 1 year ago

wordscode commented 1 year ago

官方文档 根据nodeId进行选择 比如如下表达式:

SWITCH(a).to(b, c);

这个方法需要返回String类型,就是具体的结果,以下代码示例了选择到了c节点。

@LiteflowComponent("a") public class ACmp extends NodeSwitchComponent {

@Override
public String processSwitch() throws Exception {
    System.out.println("Acomp executed!");
    return "c";
}

}

选择到了c节点,那b呢?直接return c,那b的逻辑体现在哪? 是多个根据逻辑,多个return吗? 我直接在java代码写if,switch不用这个规则引擎是不是一样? 初学者没用过规则引擎无从下手啊