如何读取或检测 REST Web 服务中的新数据
我已经使用 cakePHP 为我的移动应用程序创建了一个 REST-web 服务。这个想法是允许客户将新数据加载到系统中。现在,移动应用程序必须检查系统中是否有可用的新数据。它可以通过询问返回 json 的 Web 服务来完成此操作。现在我的问题是如何存储客户数据,以便当我查询网络服务时它显示哪些数据是新的,以便我可以使用新数据并保留旧数据?
I've created a REST-webservice with cakePHP for my mobile app. And the idea is to allow customers to load new data in to the system. Now the mobile app will have to check if there is new data available in the system. It can do this by asking the webservice which returns json. Now my question is how can i store the customers data so when i query the webservice it shows which data is new so i can use the new data and leave the old ones?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查询时,您需要一种方法来跟踪哪些数据已加载。根据数据类型,发送或跟踪最后的更新可能就足够了(按创建日期过滤),服务器端每个客户端的“已发送”标志也可以。
When querying you will need a way to track which data is already loaded. Depending on the type of data, sending or tracking the last update may suffice (to filter by a creation date), as may a "sent" flag per client on the server side.