这是一个使用数据库的待办事项列表应用程序。我使用布尔变量isDone
将任务标记为已完成,但是当我添加新任务时,出现错误'String' is not a subtype of type 'bool'
。我想将isDone
的值更改为字符串,但不确定在哪里可以键入.toString()
行。
尝试使用解决方案来解决类似错误(int,bool,future不是字符串,bool等的子类型),但由于这些错误是特定于应用程序的,因此无法解决。
数据库代码:
//This is the database
String _itemName;
String _dateCreated;
int _id;
bool _isDone;
TodoItem(this._itemName, this._dateCreated, this._isDone);
TodoItem.map(dynamic obj) {
this._itemName = obj["itemName"];
this._dateCreated = obj["dateCreated"];
this._id = obj["id"];
this._isDone = obj["isDone"];
}
String get itemName => _itemName;
String get dateCreated => _dateCreated;
int get id => _id;
bool get isDone => _isDone;
Map<String, dynamic> toMap() {
var map = new Map<String, dynamic>();
map["itemName"] = _itemName;
map["dateCreated"] = _dateCreated;
map["isDone"] = _isDone;
if (_id != null) {
map["id"] = _id;
}
return map;
}
TodoItem.fromMap(Map<String, dynamic> map) {
this._itemName = map["itemName"];
this._dateCreated = map["dateCreated"];
this._id = map["id"];
this._isDone = map["isDone"];
}
数据库创建,更新功能:
注意:更新功能仅应更改isDone的值
Future<bool> updateItem(TodoItem item) async {
var dbClient = await db;
int res = await dbClient.update("id", item.toMap(),
where: "id = ?", whereArgs: <bool>[item.isDone]);
return res > 0 ? true : false;
}
Future<int> saveItem(TodoItem item) async {
var dbClient = await db;
int res = await dbClient.insert("$tableName", item.toMap());
print(res.toString());
return res;
}
答案 0 :(得分:0)
{bool
是not supported in SQLite。
可能发生的情况是isDone
列值true
被转换为字符串"true"
,因此它在您的TodoItem.map
构造函数中崩溃了。
尝试在插入之前或在查询参数中将值转换(并解析)为1或0(int)。