- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
7秒前关闭。
Improve this question
我还尝试了null check和"as map"到聊天文档,但两者都不起作用
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
7秒前关闭。
Improve this question
我还尝试了null check和"as map"到聊天文档,但两者都不起作用
3条答案
按热度按时间jjhzyzn01#
在chatDocs声明行中添加
.toList()
,使其变为如下所示:um6iljoc2#
.map
返回一个没有[]
操作符的Iterable
,你可以通过调用toList()
把它转换成一个列表来解决这个问题。但是看起来你的
map()
已经错了。注意那里的错误。你真的需要Map它吗?如果不需要,那么这个应该已经工作了或者实际上,如果是
null
,则使用此函数来处理8tntrjer3#
你可以用这种方法,