如何在不结束会话的情况下使用 JOVO 的 tell 方法响应 Alexa 或 Google

How do respond to Alexa or Google using JOVO's tell method without ending the session

我的九丰项目只是回答了 Alexa 和 Google 的一些问题。现在,每次我使用 Amazon Developer 和 Google 的模拟器测试我的项目时,我都必须在每次响应后重新打开 skill/action。我认为这是因为 JOVO 中的 .tell 方法结束了会话。

我知道在 C# 中,有一个方法 .shouldEndSession(),当您将其设置为 false 时,下一个命令将发送回我的 skill/action。

JOVO有没有类似的方法

谢谢

找到了,我要用

this.ask('...');

而不是

this.tell('...');

因为 .tell 结束了会话,但是 .ask 没有结束会话