📅  最后修改于: 2020-12-08 05:22:30             🧑  作者: Mango
如果要限制代码仅在服务器或客户端上运行,则可以使用以下代码-
if (Meteor.isClient) {
// Code running on client...
}
if (Meteor.isServer) {
// Code running on server...
}
您可以限制代码仅在应用程序使用Cordova捆绑包时运行。
if (Meteor.isCordova) {
// Code running on Cordova...
}
一些插件需要等待服务器和DOM准备就绪。您可以使用以下代码等待一切开始。
Meteor.startup(function () {
// Code running after platform is ready...
});
下表列出了其他一些核心API方法。
Sr.No. | Method & Details |
---|---|
1 |
Meteor.wrapAsync(function) Used for wrapping asynchronous code and convert it into synchronous. |
2 |
Meteor.absoluteUrl([path], [options]) Used for generating absolute URL pointing to the app. |
3 |
Meteor.settings Used for setting deployment configuration. |
4 |
Meteor.publish(name, function) Used for publishing records to the client. |