尝试获取对象时出现错误。我试图根据我在开发中心看到的信息检索ID为“ hJdkLkt”的表。我可以看到它正在创建会话,但是我什么也没收到。
this.session = enigma.create({
schema,
url: 'ws://localhost:9076/app/sampleApp'
});
this.session.open()
.then(global => global.createSessionApp())
.then(doc => doc.getObject('hJdkLkt').then(obj => console.log(obj)))
.then(() => this.session.close())
.catch(error => console.log(error));