微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在颤动的蜂巢中按日期检索数据

如何解决在颤动的蜂巢中按日期检索数据

我正在使用 Flutter 制作一个应用程序并使用 hive 创建一个数据库用户将获得一个选项以根据某些字段保存交易详细信息

shown below

现在我想要的是,根据交易日期,特定月份所有交易的总和,然后在这样的特定页面显示其总和

example image

我用来创建表单域的代码

class Transaction extends HiveObject {
 @HiveField(0)
 String paymentMode;
 @HiveField(1)
 bool unnecessary;
 @HiveField(2)
 String title;
 @HiveField(3)
 DateTime createdOn;
 @HiveField(4)
 int amount;
 @HiveField(5)
 String category;

 Transaction({
  this.paymentMode = "",this.unnecessary = false,this.title = "",this.createdOn,this.amount = 0,this.category="",});

  Transaction.fromJson(Map<String,dynamic>  map) :
    paymentMode = map['paymentMode']  ?? "",unnecessary = map['unnecessary']  ?? false,title = map['title']  ?? "",createdOn = map['createdOn']  ?? DateTime.Now(),amount = map['amount']  ?? 0,category = map['category'] ?? "";

Map<String,dynamic> toJson() => {
    'paymentMode': paymentMode,'unnecessary': false,'title': title,'createdOn': createdOn,'amount': amount,'category': category,};

  Transaction copyWith({
    String paymentMode,bool unnecessary,String title,DateTime createdOn,User user,int amount,String category,}) {
    return Transaction(
     paymentMode: paymentMode ?? this.paymentMode,unnecessary: unnecessary ?? this.unnecessary,title: title ?? this.title,createdOn: createdOn ?? this.createdOn,amount: amount ?? this.amount,category: category ?? this.category,);
   }

代码

解决方法

我假设您有一个 Transaction 对象列表, 您可以简单地使用排序功能对该列表进行排序。

listOftransactions.sort((a,b)=>a.createdOn.compareTo(b.createdOn));

这将根据时间戳对列表进行排序,如果您想颠倒顺序,只需将内联函数中的 a 替换为 b

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。