只有在不存在的情况下才将数据添加到json

问题描述 投票:0回答:1

我有以下型号

product_model.dart

class ProductModel {
  String status;
  String message;
  List<Results> results;

  ProductModel({this.status, this.message, this.results});

  ProductModel.fromJson(Map<String, dynamic> json) {
    status = json['status'];
    message = json['message'];
    if (json['data'] != null) {
      results = new List<Results>();
      json['data'].forEach((v) {
        results.add(new Results.fromJson(v));
      });
    }
  }

  Map<String, dynamic> toJson() {
    final Map<String, dynamic> data = new Map<String, dynamic>();
    data['status'] = this.status;
    data['message'] = this.message;
    if (this.results != null) {
      data['data'] = this.results.map((v) => v.toJson()).toList();
    }
    return data;
  }
}

class Results {
  String id;
  String productCode;
  String category;
  String title;
  String isActive;

  Results(
      {this.id,
      this.productCode,
      this.category,
      this.title,
      this.isActive,
      });

  Results.fromJson(Map<String, dynamic> json) {
    id = json['id'];
    productCode = json['product_code'];
    category = json['category'];
    title = json['title'];
    isActive = json['is_active'];

  }

  Map<String, dynamic> toJson() {
    final Map<String, dynamic> data = new Map<String, dynamic>();
    data['id'] = this.id;
    data['product_code'] = this.productCode;
    data['title'] = this.title;
    data['category'] = this.category;
    data['is_active'] = this.isActive;
    return data;
  }
}

我具有将产品保存到收藏夹的功能。收藏夹将另存为json文件中。

import 'package:example/utils/favstorage.dart';
import 'package:example/models/product_model.dart';

class FavoriteProducts {
  FavoritesStorage storage = FavoritesStorage();
  List<ProductModel> favorites = [];

  Future addFavorite(ProductModel products) async {
      favorites.add(products);
      await storage.writeFavorites(favorites);
  }
}

仅当产品不在收藏夹时,我才想将其添加到收藏夹。如何更新addFavorite方法,以便如果特定的[[id不存在,则仅继续添加到收藏夹。我是新来的扑扑。有人可以帮我吗?

flutter
1个回答
0
投票
您可以使用and indexWhere在列表中搜索具有相同ID的商品,例如:
© www.soinside.com 2019 - 2024. All rights reserved.