对于 Flutter 和 Yii2 来说,我们应该使用什么来实现离线优先?
我们想创建一个离线应用程序。我们正在尝试使用或创建一个自动同步数据库,允许与应用程序离线工作。我们的客户端是 Flutter,后端是 Yii2。最好的解决方案是什么?
We wanna create an app that is offline-fist. We're trying to use or create an auto sync database that allows work offline with app. Our client is Flutter and our back-end is Yii2. What is the best solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我开发了多个离线同步应用程序。我不能告诉你太多关于后端的信息,但我可以告诉你关于 Flutter 的信息。
为了在您的设备上存储数据,您可以使用多个插件。
用于自动同步
您可以使用互联网检查器并将数据库与实时同步。
注意:此插件不会告诉您互联网是否正常工作。
如果您想在应用程序在后台时进行同步,那么您可能需要使用
Happy Coding ;)
I have developed multiple offline sync applications. I can not tell you about the backend much but I can tell you about the Flutter.
For storing data on your device there are multiple plugins you can use.
For Auto-sync
You can use the internet checker and sync your database with live.
Note-: This plugin does not give you if the internet is working or not.
If you want to sync when the app is in the background then you may need to use
Happy Coding ;)