在FireStore上的文档中,每个文档都有一个字符串列表。当我在应用程序中显示文档时,我想按字母顺序对它们进行排序。我正在尝试的方法不起作用。
var words = document['list'].cast<String>();
words.sort(); // Outputs 'null'
在调试器中检查时,当我强制转换列表时,该对象的类型为CastList
,但是我找不到任何信息,尝试创建具有该声明类型的对象会告诉我它是一个未定义的类。所以然后我尝试指定我想要的类:
List<String> words = document['list'].cast<String>();
但是当我尝试排序时,它仍然输出null
。
我正在lists
中获取所有文档,并在listView中显示它们。
StreamBuilder(
stream: Firestore.instance.collection('lists').orderBy('releases').snapshots,
builder: (context, snapshot) {
if (!snapshot.hasData)
return const Center(child: Text('Loading...'));
return ListView.builder(
itemCount: snapshot.data.documents.length,
itemBuilder: (context, index) =>
_buildRow(context, snapshot.data.documents[index], index),
);
},
)
Widget _buildRow(BuildContext context, DocumentSnapshot document, int index) {
var words = document['list'].cast<String>();
var wordsString = words.toString();
wordsString = wordsString.substring(1, wordsString.length - 1);
return CheckboxListTile(
title: Text(
document['name'],
style: _largerTextStyle,
),
subtitle: Text(
wordsString,
style: _textStyle,
),
value: _selectedIndices.contains(index),
onChanged: (bool value) {
setState(() {
if (value) _selectedIndices.add(index);
else _selectedIndices.remove(index);
});
},
);
}
答案 0 :(得分:1)
它应该可以工作,不需要调用cast
。
编辑: 我想您忘了提取数据。
List words = document.data['list'];
words.sort();