1

例如,我有 3 个不同的实体

@action = eat,run,walk
@person = Michael, John, Fred 
@emotion = angry,sad,happy

我想计算用户输入的操作和人员实体

If bot recognizes
entities['action'].size() + entities['person'].size() > 2

还有其他方法可以实现这一目标吗?

4

1 回答 1

0

要解决无法识别的实体之一,您可以使用三元运算符<Expression> ? <what_to_do_when_true> : <what_to_do_when_false>

因此,在您的示例中,条件如下所示: ((entities['action'] != null ? entities['action'].size() : 0) + (entities['action'] != null ? entities['person'].size() : 0)) > 2

当其中一个实体未被识别 ( null) 时,计数值为0

于 2019-04-08T08:33:04.980 回答