如何在 Flutter 中导入 Dart IndexedDB 库?
How do I import the Dart IndexedDB library in Flutter?
我正在使用以下语句在 Flutter 应用程序中导入 dart 索引数据库库:
import 'dart:indexed_db';
VSCode 报告以下错误:
Target of URI doesn't exist: 'dart:indexeddb'.
Try creating the file referenced by the URI, or Try using a URI for a file that does
exist.dart(uri_does_not_exist)
如何在Flutter中使用索引数据库?
根据这个问题:indexedDB blocked
indexedDB 在 flutter
中被阻塞
您可以使用 idb_shim 之类的替代方法,它只是 indexedDB API
的包装器
我正在使用以下语句在 Flutter 应用程序中导入 dart 索引数据库库:
import 'dart:indexed_db';
VSCode 报告以下错误:
Target of URI doesn't exist: 'dart:indexeddb'.
Try creating the file referenced by the URI, or Try using a URI for a file that does
exist.dart(uri_does_not_exist)
如何在Flutter中使用索引数据库?
根据这个问题:indexedDB blocked
indexedDB 在 flutter
中被阻塞您可以使用 idb_shim 之类的替代方法,它只是 indexedDB API
的包装器