已经在不支持 WebApp 的移动应用程序中使用 sqflite 数据库,如果是,我可以在相同的库中为 Web 应用程序使用不同的库吗?
Already using sqflite database for mobile App which is not supporting to WebApp,can i use different library for web App in same if yes than which lib
我正在为数据库使用 sqflite 库,但它支持 IOS/Android 应用程序我可以将数据库用于应用程序现有的数据库(Sqflite)和用于同一应用程序中不同的 webApp 如果我可以那么如何以及哪个将是 best.Thanks
是的。您可以为网络使用单独的包。现在,检查您的应用是否在网络上 运行:
import 'package:flutter/foundation.dart' show kIsWeb;
if (kIsWeb) {
// running on the web!
} else {
// NOT running on the web! You can check for additional platforms here.
}
如果您的 use-case 只是为了存储小值,您可以使用 shared_preferences,它同时支持 Web 和移动设备。
您也可以尝试 hive 两者都支持。
我正在为数据库使用 sqflite 库,但它支持 IOS/Android 应用程序我可以将数据库用于应用程序现有的数据库(Sqflite)和用于同一应用程序中不同的 webApp 如果我可以那么如何以及哪个将是 best.Thanks
是的。您可以为网络使用单独的包。现在,检查您的应用是否在网络上 运行:
import 'package:flutter/foundation.dart' show kIsWeb;
if (kIsWeb) {
// running on the web!
} else {
// NOT running on the web! You can check for additional platforms here.
}
如果您的 use-case 只是为了存储小值,您可以使用 shared_preferences,它同时支持 Web 和移动设备。
您也可以尝试 hive 两者都支持。