Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经完成了这个带有 Web-app 的项目,所以我将开始移动应用程序开发工作,计划使用 Famo.us
我的问题是我知道我可以制作一个单独的移动应用程序项目并通过 DDP 连接它,但我对关于这个主题的文章有点困惑,所以想知道是否有人可以很好地概述如何解决这个问题?
或者在我的情况下是否有更好的解决方案?
这实际上很容易。要运行 Cordova 特定代码,您只需要检查您是否在 Cordova 中。
https://github.com/meteor/meteor/wiki/Meteor-Cordova-Phonegap-integration#adding-cordovaphonegap-specific-javascript-code-to-your-application
if (Meteor.isCordova) { console.log("Printed only in mobile cordova apps"); }