(async () => {
const p = await app.sdk.init();
console.log("==========",p);
})();
在2.17.0的版本中这样的写法会报如下错误 Cannot read property 'mark' of undefined
如果将将基础库版本调整到2.12.3版本就可以得到支持。 难度是2.17.0不支持 async 和 await 异步方式吗?