gpt4 book ai didi

flutter - 如何将特定索引处的值添加到 dart 中的空列表中?

转载 作者:行者123 更新时间:2023-12-03 02:44:11 25 4
gpt4 key购买 nike

  List<String> currentList =new List<String>(); 
void initState() {
super.initState();
currentList=[];
}
Future<Null> savePreferences(option,questionIndex) async {
SharedPreferences prefs = await SharedPreferences.getInstance();
currentList.insert(questionIndex, option);
}

所以基本上我想要做的是在共享首选项中为指定索引(我检查并正确返回索引)保存一个问题的选项。当它运行并且我按下该选项时,它返回给我以下错误:
E/flutter ( 6354): [ERROR:flutter/lib/ui/ui_dart_state.cc(166)] Unhandled Exception: RangeError (index): Invalid value: Valid alue range is empty: 0


我使用 insert 方法而不是 add 方法的原因是因为我想基本上替换已经存储在索引中的值,以防用户想要覆盖他们以前的答案。有人可以帮忙吗?谢谢

最佳答案

如果你想要一些像稀疏数组一样的东西,你可以使用 Map反而。如果您希望能够按数字索引(而不是按插入顺序)按顺序迭代项目,则可以使用 SplayTreeMap .
例如:

import 'dart:collection';

void main() {
final sparseList = SplayTreeMap<int, String>();
sparseList[12] = 'world!';
sparseList[3] = 'Hi';
sparseList[3] = 'Hello';
for (var entry in sparseList.entries) {
print('${entry.key}: ${entry.value}');
}
}
打印:
3: Hello
12: world!

关于flutter - 如何将特定索引处的值添加到 dart 中的空列表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62367823/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com