我正在尝试使用Watson Assistant JSON编辑器
现在是设置
Entities
@action = eat,run,play
Context Variable
$list = [0,0]
I want to update my list if an action is detected
List[0] will be the size
List[1] will be the position[0]
在Spel JSON上尝试
"$list":"<? entities['action'] != null ? $list.set(0,entities['action'].size()) and $list.set(1,entities['action'].location[0]): $list.set(0,0) and $list.set(1,0) ?>"
如果添加了“和”运算符,则返回“ True” | $ list = True
而不是将我的数组更新为$ list ['size'] ['location']
我只能通过添加另一个包含布尔部分的上下文变量来实现这一点
"sample": "entities['action'] != null ? $list.set(0,5) and $list.set(1,5) : $list.set(0,0) and $list.set(1,0)"
知道如何使用1个变量获得相同的输出吗?
答案 0 :(得分:0)
将列表设置为“ True”的原因是该表达式:"$list":"<? entities['action'] != null ? $list.set(0,entities['action'].size()) and $list.set(1,entities['action'].location[0]): $list.set(0,0) and $list.set(1,0) ?>"
最后将布尔检查的结果值分配给list变量,从而覆盖了表达式所做的修改。这是用于更新上下文变量的默认WA行为(例如,当您写"my_string" : "value of the string"
如果您只想修改列表数组,则应使用建议的第二种方法使用另一个变量sample
-该变量将使用SpEL表达式的结果值进行更新,因此list
将不容忽视。