我需要检查myItemsList是否包含myitem.itemId,如果存在,则需要添加itemQuantity,如果不存在,则需要将myitem对象添加到myItemsList

List<MyItem> myItemsList = new List();

MyItem myitem = new MyItem (
  itemId: id,
  itemName: name,
  itemQuantity: qty,
);

if (myItemsList.contains(myitem.itemId)) {
  print('Allready exists!');
} else {
  print('Added!');
  setState(() {
    myItemsList.add(myitem);
  });
}
MyItem
class MyItem {
  final String itemId;
  final String itemName;
  int itemQuantity;

  MyItem ({
    this.itemId,
    this.itemName,
    this.itemQuantity,
  });
}

上面的代码无法按预期工作,请帮助我找出问题所在。

最佳答案

您正在使用包含略有错误。

来自:https://api.dartlang.org/stable/2.2.0/dart-core/Iterable/contains.html

bool contains(Object element) {
  for (E e in this) {
    if (e == element) return true;
  }
  return false;
}

您可以覆盖==运算符,请参见:https://dart-lang.github.io/linter/lints/hash_and_equals.html
@override
bool operator ==(Object other) => other is Better && other.value == value;

或者,您可以遍历列表并按常规方式逐一搜索,这似乎稍微容易一些。

关于dart - 检查列表是否包含dart对象的属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55757708/

10-12 04:27