没有为类型“List<UserModal>”定义 getter 'displayName'。但是我已经定义了。有啥我做错了吗?

Posted

技术标签:

【中文标题】没有为类型“List<UserModal>”定义 getter \'displayName\'。但是我已经定义了。有啥我做错了吗?【英文标题】:The getter 'displayName' isn't defined for the type 'List<UserModal>'. But I have defined it. Is there something I am doing wrong?没有为类型“List<UserModal>”定义 getter 'displayName'。但是我已经定义了。有什么我做错了吗? 【发布时间】:2021-12-04 03:01:48 【问题描述】:

我的 userModel 类

class UserModal 
String? userId;
String? email;
String? imageUrl;
String? displayName;
String? gender;
String? age;
String? phoneNumber;

UserModal(
required this.userId,
required this.email,
this.displayName,
this.imageUrl,
this.age,
this.gender,
this.phoneNumber,
);

Map<String, dynamic> toMap() 
return 
  'userId': userId,
  'email': email,
  'imageUrl': imageUrl,
  'displayName': displayName,
  'gender': gender,
  'age': age,
  'phoneNumber': phoneNumber,
  ;
 

我在 Firebase 服务端的代码

List<UserModal> _getUserModalFromSnapshot(QuerySnapshot snapshot) 
return snapshot.docs.map((doc) 
  return UserModal(
    userId: (doc.data() as dynamic)['userId'],
    email: (doc.data() as dynamic)['email'],
    imageUrl: (doc.data() as dynamic)['imageUrl'],
    displayName: (doc.data() as dynamic)['displayName'],
    gender: (doc.data() as dynamic)['gender'],
    age: (doc.data() as dynamic)['age'],
    phoneNumber: (doc.data() as dynamic)['phoneNumber'],
  );
).toList();

  
Stream<List<UserModal>> get getUserModal => _usersCollection
  .snapshots()
  .map((snapshot) => _getUserModalFromSnapshot(snapshot));

在 main.dart 中调用 Stream Provider

StreamProvider<List<UserModal>>(
        create: (context) => DatabaseService().getUserModal,
        initialData: []),

在 UI 中使用 Provider

@override
Widget build(BuildContext context) 
final userMod = Provider.of<List<UserModal>>(context);
userMod.forEach((element) 
  print(userMod.displayName);
);

用户集合已在 firebase firestore 中创建,并且值存储在字段中。但是在我的 UI 中调用它时,流没有得到字段名称。我无法理解我做错了什么?enter image description here

【问题讨论】:

forEach 循环内,您需要打印element.displayName 而不是userMod.displayName 如果需要,为什么要让用户 ID 和电子邮件字段为空 注意错误信息:它告诉你你正在尝试访问List 上的displayName 属性,notUserModel 对象. 【参考方案1】:

在您的代码中,userMod 的类型为 List&lt;UserModal&gt;,它基本上是 dart 中的 List 类。

你要做的是:

userMod.forEach((element) 
  print(element.displayName);
);

现在您正在遍历 userMod 列表并将每个 element 作为 UserModal 类的对象,其中 displayName 被定义为属性。

【讨论】:

是的,这行得通!呵呵谢谢!

以上是关于没有为类型“List<UserModal>”定义 getter 'displayName'。但是我已经定义了。有啥我做错了吗?的主要内容,如果未能解决你的问题,请参考以下文章

没有找到能够从类型转换为类型的转换器

没有为“GoogleMapController”类型定义方法“addMarker”

PhpStorm - 有没有办法将 PHPDoc 转换为类型提示并返回类型声明?

没有为类型 'Widget' 定义 getter 'preferredSize'

为没有或许多不同参数类型的函数定义 Typescript 类型

没有为类型“type”定义方法“fromjson”