gpt4 book ai didi

meteor - 我何时或如何在 Meteor 应用程序中使用 this.flush()

转载 作者:行者123 更新时间:2023-12-01 05:31:48 25 4
gpt4 key购买 nike

我试图了解何时可以在 Meteor 应用程序中使用 this.flush()。

文档说明以下内容

Call inside publish function. Sends all the pending set, unset, and complete messages to the client.



如果我的发布功能是这样的
Meteor.publish('myCollection', function(myid){
return MyCollection.find({_id: myid});
});

我会使用 this.flush() 吗?

在什么样的情况下会使用 this.flush()?

谢谢

最佳答案

在那个用例中不需要,因为 Meteor.publish自动处理如何将 Mongo 游标转换为合适的细节 setunset每个订阅客户端的命令。

如果您编写管理自己的自定义发布 setunset ,您可以使用 flush将所有挂起的更改推送到客户端。您将在此处找到该技术的示例:How does the messages-count example in Meteor docs work?

关于meteor - 我何时或如何在 Meteor 应用程序中使用 this.flush(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10743109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com