本文介绍: 类型“Future<int>”不是类型强制转换中类型“int”的子类型。这里不能强制转换,要拿到DatabaseHelper.dbhelper.getTaskGroupRelationOrde()返回结果可以使用DatabaseHelper.dbhelper.getTaskGroupRelationOrder().then((value) =>{})今天调试flutter程序时报错。
问题描述
今天有个同事调试flutter程序时报错,问我怎么解决,程序运行时报如下错误:
type ‘Future’ is not a subtype of type ‘int’ in type cast
错误源码
int order = DatabaseHelper.dbhelper.getTaskGroupRelationOrder() as int;
TaskGroupRelation relation = TaskGroupRelation(
id:0,
taskId:snapshot.data?[index].id,
groupId:widget.groupId,
taskOrder:order,
);
DatabaseHelper.dbhelper.insertTaskGroupRelationData(relation);
if (context.mounted) Navigator.of(context).pop();
问题分析
类型“Future<int>”不是类型强制转换中类型“int”的子类型。这里不能强制转换,要拿到DatabaseHelper.dbhelper.getTaskGroupRelationOrde()返回结果可以使用DatabaseHelper.dbhelper.getTaskGroupRelationOrder().then((value) =>{})
解决方法
使用DatabaseHelper.dbhelper.getTaskGroupRelationOrder().then((value) =>{})
修改后的代码
TaskGroupRelation relation;
DatabaseHelper.dbhelper.getTaskGroupRelationOrder().then((value) =>
{
relation = TaskGroupRelation(
id:0,
taskId:snapshot.data?[index].id,
groupId:widget.groupId,
taskOrder:value,
),
DatabaseHelper.dbhelper.insertTaskGroupRelationData(relation),
if (context.mounted) Navigator.of(context).pop(),
});
结束语
Flutter是一个由Google开发的开源UI工具包,它可以让您在不同平台上创建高质量、美观的应用程序,而无需编写大量平台特定的代码。我将学习和深入研究Flutter的方方面面。从基础知识到高级技巧,从UI设计到性能优化,欢饮关注一起讨论学习,共同进入Flutter的精彩世界!
原文地址:https://blog.csdn.net/yikezhuixun/article/details/134668619
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_33652.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。