参数类型“Map<String, dynamic> Function()”不能分配给参数类型“Map<String, dynamic>”

Posted

技术标签:

【中文标题】参数类型“Map<String, dynamic> Function()”不能分配给参数类型“Map<String, dynamic>”【英文标题】:The argument type 'Map<String, dynamic> Function()' can't be assigned to the parameter type 'Map<String, dynamic>' 【发布时间】:2020-12-15 05:38:24 【问题描述】:

这最初可以工作,但在 firebase 更新后,它现在给了我这个错误。我在给出错误的部分添加了星号。错误信息已添加到代码下方。

import 'package:cloud_firestore/cloud_firestore.dart';

class Record 
  final String name;
  final int totalVotes;
  final DocumentReference reference;

  Record.fromMap(Map<String, dynamic> map, this.reference)
      : assert(map['name'] != null),
        assert(map['totalVotes'] != null),
        name = map['name'],
        totalVotes = map['totalVotes'];

  Record.fromSnapshot(DocumentSnapshot snapshot)
      : this.fromMap(**snapshot.data**, reference: snapshot.reference);

  @override
  String toString() => "Record<$name:$totalVotes>";


class Voters 
  String uid;
  String voteId;
  String markedVoteOption;

参数类型“Map Function()”不能分配给参数类型“Map”。

【问题讨论】:

你从哪里得到这个错误? 我在哪里添加了星号。 *** 就是这个。 Record.fromSnapshot(DocumentSnapshot 快照) : this.fromMap(snapshot.data, 参考:snapshot.reference); 【参考方案1】:

尝试以下方法:

  Record.fromSnapshot(DocumentSnapshot snapshot)
      : this.fromMap(snapshot.data(), reference: snapshot.reference);

data() 是一个方法:

  /// Contains all the data of this [DocumentSnapshot].
  Map<String, dynamic> data() 
    return _CodecUtility.replaceDelegatesWithValueInMap(
        _delegate.data(), _firestore);
  

返回Map&lt;String, dynamic&gt;

【讨论】:

根据您给出的答案,我能够操纵它并找到解决方法。你可以在下面查看我的答案。 @彼得哈达德 @KobbyDiscount 不,不要使用我应该使用的第二个代码 sn-p。我只是在这里向您展示 data() 方法 github.com/FirebaseExtended/flutterfire/blob/master/packages/… 的代码 @KobbyDiscount 你所要做的就是这个Record.fromSnapshot(DocumentSnapshot snapshot) : this.fromMap(snapshot.data(), reference: snapshot.reference); 嗨,在此处和其他页面上尝试了所有解决方案后,我仍然遇到同样的错误【参考方案2】:

这是因为DocumentSnapshot.data()是一个返回Map&lt;String, dynamic&gt;的函数。

所以,答案是:

  Record.fromSnapshot(DocumentSnapshot snapshot)
      : this.fromMap(snapshot.data(), reference: snapshot.reference);

【讨论】:

【参考方案3】:

显然需要的只是地图上的括号

import 'package:cloud_firestore/cloud_firestore.dart';

class Record 
  final String name;
  final int votes;
  final DocumentReference reference;

  Record.fromMap(Map<String, dynamic> map(), this.reference)
      : assert(map()['name'] != null),
        assert(map()['votes'] != null),
        name = map()['name'],
        votes = map()['votes'];

  Record.fromSnapshot(DocumentSnapshot snapshot)
      : this.fromMap(snapshot.data, reference: snapshot.reference);

  @override
  String toString() => "Record<$name:$votes>";


【讨论】:

在尝试了所有提到的解决方案后,我仍然遇到同样的错误【参考方案4】:

我就是这样解决的。

import 'package:cloud_firestore/cloud_firestore.dart';

class Record 
  final String name;
  final int totalVotes;
  final DocumentReference reference;

  Record.fromMap(Map<String, dynamic> map(), this.reference)
      : assert(map()['name'] != null),
        assert(map()['totalVotes'] != null),
        name = map()['name'],
        totalVotes = map()['totalVotes'];

  Record.fromSnapshot(DocumentSnapshot snapshot)
      : this.fromMap(snapshot.data, reference: snapshot.reference);

  @override
  String toString() => "Record<$name:$totalVotes>";


class Voters 
  String uid;
  String voteId;
  String markedVoteOption;



 /// Contains all the data of this [DocumentSnapshot].
  Map<String, dynamic> data() 
    return _CodecUtility.replaceDelegatesWithValueInMap(
        _delegate.data(), _firestore);
  

【讨论】:

以上是关于参数类型“Map<String, dynamic> Function()”不能分配给参数类型“Map<String, dynamic>”的主要内容,如果未能解决你的问题,请参考以下文章

颤振列表错误参数类型'List'不能分配给参数类型'String'

获取错误“未知”类型的参数不能分配给“错误”类型的参数 |空值'

给定传递给它的参数类型,如何确定函数参数的类型?

参数类型“Type”不能分配给参数类型“FirebaseUser”

类型提示,其中一个参数是另一个参数的类型

参数类型“对象?”不能分配给参数类型'String'最新版本