如何在 nexmo 客户端 js 中监听 session:success 事件?

How to listen session:success event in nexmo client js?

我按照这里的教程:https://developer.nexmo.com/client-sdk/tutorials/app-to-phone/client-sdk/app-to-phone/main-screen/javascript

监听 session:success 事件,波纹管脚本不工作。

const status = $('.input');

app.on('session:success', () => {
 status.val('Ready to call.');
});

还有其他我可以听的活动吗?

看来我不需要监听 nexmo 应用程序事件。

用if条件检查一下就可以了

if (app.session.sessionReady) {
 callStatus.val("Ready for call.");
}