English 中文(简体)
何时自动订阅应该被称为 Meteor 应用程序中的客户端?
原标题:When should autosubscribe be called client side in a Meteor app?
  • 时间:2012-05-24 15:11:50
  •  标签:
  • meteor

将客户自动订阅到Meteor App中的最佳做法是什么?

它应该总是在Meteor。 启动?

如果是,为什么?

如果不是,为什么?

如果有时,为什么?

简言之,基于在陨石中安装自动订阅选项的最佳做法是什么? 启动还是不启动?我认为此时这对应用程序开发者非常重要,因为它极大地影响了我们的应用设计决定。

最佳回答

自动订阅已被撤销, 我怀疑您现在要使用自动运行, 记录在< a href="http://docs.meteor.com/ #meteor_autorun" rel=“ noreferrer” > http://docs.meteor. com/ #meteor_autorun

问题回答

当您想要自动在会话变量变化时更新订阅时 。

来源: Meteor.autosubistics

从我所做的测试来看, 在 Meteor 中设置您的自动订阅。 启动似乎是最安全的解决办法, 如果您需要这些收藏来拥有某种数据群, 或者在显示前开始发布数据。 我遇到类似问题, @ matb33 已经用空数据报告在负载中并在Meteor 中安装自动订阅。 启动客户可以解决问题 。 @ matb33

请注意,autosuccording 现已删除 ,代之以 autorun





相关问题
Problems to run examples in Meteor

I m testing Meteor examples and this is what I see when I run meteor in todos examples: Unexpected mongo exit code 100. Restarting. Unexpected mongo exit code 100. Restarting. Unexpected mongo exit ...

Handlebars Exception

Any hints what the following exception might be about? Running on: http://localhost:3000/ No dependency info in bundle. Filesystem monitoring disabled. Errors prevented startup: Exception while ...

How easy to call external Web APIs in Meteor?

Does (or will) Meteor provide a library to handle external Web API calls? E.g. to build a Meteor app that integrates with Facebook Graph API or Google Spreadsheet API.

Meteor - Using collection on client startup

Why this code shows "0"? Shouldn t it return "1"? Messages = new Meteor.Collection("messages"); if (Meteor.is_client) { Meteor.startup(function () { alert(Messages.find().count()); ...

热门标签