在缝合中观看文档时出现传输错误

Getting transport error while watching the document in stitch

当我使用 MongoDB watch 观看集合中的某些 ID 时出现错误

错误错误:未捕获(承诺):e:(TRANSPORT_ERROR):请求传输在与 Stitch 通信时遇到错误:事件源无法打开并且不会重新连接;检查网络日志以获取更多详细信息 e: (TRANSPORT_ERROR): 请求传输在与 Stitch 通信时遇到错误:事件源无法打开,不会重新连接;查看网络日志了解更多详情

从今天开始一直工作到昨天

            const db = mongoClient.db(environment.databaseName);
            const comments = db.collection('collectionName');

            this.changeStream = await comments.watch(ids);
            this.changeStream.onNext((event) => {
                console.log('Watched document changed:', event);
                this.fetchData();

            });

我希望每当文档在 id 列表中发生更改时。应触发更改事件。

这表明您的应用无法与 stitch 后端通信,可能是因为没有互联网或网络不佳