我如何获得时间的价值? 这是我的代码,但我看不到时间
{
"context": {
"time": "@sys-time"
},
"output": {
"text": {
"values": [
"Is $time"
]
}
}
}
答案 0 :(得分:2)
您需要使用evaluation syntax:
{
"context": {
"time": "<? @sys-time ?>"
},
"output": {
"text": {
"values": [
"Is $time"
]
}
}
}
您还需要确保在对话框中提及时间。 sys-time
没有系统时间,但用户输入与时间有关。