用户将数据从 Android 应用程序上传到 Web 服务器数据库的最佳方式
我正在编写一个使用公式来计算数字的应用程序。然而,该公式只是一个估计,所以我想从用户那里获得实际结果,以便我可以改进它。处理这个问题的最佳方法是什么?
I'm writing an app that uses a formula to calculate a number. The formula however is only an estimate, so I want to get actual results from users so I can improve it. What is the best way to handle this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会在您的 Web 服务器上构建一个 REST API,并让 Android 应用程序将数据反馈给它,以便 API 可以将其存储在您的中央数据库中。
http://www.youtube.com/watch?v=xHXn3Kg2IQE
http://www.slideshare.net/sullis/connecting-to-web-services-on-android/
如何创建 API 将取决于 API 构建的平台。
I'd build a REST API on your web server, and have the Android app feed data back to it so the API can store it in your central database.
http://www.youtube.com/watch?v=xHXn3Kg2IQE
http://www.slideshare.net/sullis/connecting-to-web-services-on-android/
How you create the API will depend on what platform the API is being built on.