我正在努力学习颤动,所以我在pupspec.yaml中添加了一些依赖项:
dependencies:
flutter:
sdk: flutter
moor_flutter: ^2.1.1
provider: ^4.0.4
flutter_slidable: ^0.5.4
path_provider: ^1.6.5
path: ^1.6.4
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.2
dev_dependencies:
moor_generator: ^2.4.0
build_runner: ^1.8.1
flutter_test:
sdk: flutter安装这些依赖项后,我在lib -> data -> moor_database.dart文件中创建一个表类:
import 'package:moor_flutter/moor_flutter.dart';
part 'moor_database.g.dart';
class Tasks extends Table {
IntColumn get id =>
integer().autoIncrement().call();
TextColumn get name => text().withLength(min: 1, max: 50)();
DateTimeColumn get dueDate => dateTime().nullable()();
BoolColumn get completed => boolean().withDefault(Constant(false))();
}
@UseMoor(tables: [Tasks])
class AppDatabase extends _$AppDatabase {
AppDatabase()
: super(FlutterQueryExecutor.inDatabaseFolder(
path: 'db.sqlite', logStatements: true));
@override
int get schemaVersion => 1;
}我想通过以下方式生成省道代码:
flutter packages pub run build_runner watch但我发现了一个错误:
$ flutter packages pub run build_runner watch
[INFO] Generating build script...
[INFO] Generating build script completed, took 349ms
[INFO] Setting up file watchers...
[INFO] Setting up file watchers completed, took 12ms
[INFO] Waiting for all file watchers to be ready...
[INFO] Waiting for all file watchers to be ready completed, took 165ms
[INFO] Initializing inputs
[INFO] Reading cached asset graph...
[INFO] Reading cached asset graph completed, took 68ms
[INFO] Checking for updates since last build...
[INFO] Checking for updates since last build completed, took 889ms
[INFO] Running build...
[INFO] 1.6s elapsed, 0/1 actions completed.
[INFO] 3.4s elapsed, 0/1 actions completed.
[SEVERE] moor_generator:moor_generator on lib/data/moor_database.dart:
Error running MoorGenerator
NoSuchMethodError: The getter 'typeConverter' was called on null.
Receiver: null
Tried calling: typeConverter
[SEVERE] moor_generator:moor_generator on lib/data/moor_database.dart:
Error running DaoGenerator
NoSuchMethodError: The getter 'typeConverter' was called on null.
Receiver: null
Tried calling: typeConverter
[INFO] Running build completed, took 3.7s
[INFO] Caching finalized dependency graph...
[INFO] Caching finalized dependency graph completed, took 50ms
[SEVERE] Failed after 3.7s在googleing之后,我找到了这个解决方案:但是在运行flutter packages pub run build_runner build --delete-conflicting-outputs之后,我得到了以下错误:
flutter packages pub run build_runner build --delete-conflicting-outputs
[INFO] Generating build script...
[INFO] Generating build script completed, took 350ms
[INFO] Initializing inputs
[INFO] Reading cached asset graph...
[INFO] Reading cached asset graph completed, took 79ms
[INFO] Checking for updates since last build...
[INFO] Checking for updates since last build completed, took 896ms
[INFO] Running build...
[INFO] Running build completed, took 11ms
[INFO] Caching finalized dependency graph...
[INFO] Caching finalized dependency graph completed, took 47ms
[SEVERE] moor_generator:moor_generator on lib/data/moor_database.dart (cached):
Error running MoorGenerator
NoSuchMethodError: The getter 'typeConverter' was called on null.
Receiver: null
Tried calling: typeConverter
[SEVERE] moor_generator:moor_generator on lib/data/moor_database.dart (cached):
Error running DaoGenerator
NoSuchMethodError: The getter 'typeConverter' was called on null.
Receiver: null
Tried calling: typeConverter
[SEVERE] Failed after 71ms
pub finished with exit code 1发布于 2020-04-05 14:56:25
我问了一个问题,在它的官方回购git,我得到了这样的答案:
如果用integer().autoIncrement()()替换它,它就能工作。生成器应该会发出一条更有用的错误消息,我来看看为什么这里没有发生这种情况。
我打电话说:
IntColumn get id =>integer().autoIncrement().call();致:
IntColumn get id =>integer().autoIncrement()();我的问题消失了。
https://stackoverflow.com/questions/61039057
复制相似问题