if (Meteor.isClient) { // Code running on client... } if (Meteor.isServer) { // Code running on server... }
if (Meteor.isCordova) { // Code running on Cordova... }
Meteor.startup(function () { // Code running after platform is ready... });
S.No. | 方法和詳細 |
---|---|
1 |
Meteor.wrapAsync(function)
用於包裝非同步程式碼並將其轉換成同步。
|
2 |
Meteor.absoluteUrl([path], [options])
用於生成絕對URL指向的應用程式。
|
3 |
Meteor.settings
用於設定部署組態。
|
4 |
Meteor.publish(name, function)
用於發布記錄用戶端。
|