gpt4 book ai didi

dart - 我可以存储具有共享首选项的List 吗?

转载 作者:行者123 更新时间:2023-12-03 03:07:20 26 4
gpt4 key购买 nike

我想在本地存储API的值列表。共享首选项是否允许存储列表,因为每次我尝试以共享首选项保存值时,都会得到“类型'列表'不是类型'列表'的子类型”

Future fetchAllProduct() async{
try{
for(int j = 1; j < 3; j++){
final response = await
http.get('https://website/api/?page=1',
);
List result = json.decode(response.body);
products.addAll(result);

//Saving fetched product list
SharedPreferences preferences = await SharedPreferences.getInstance();
preferences.setStringList('prds', products);

//final prds = preferences.getStringList('prd');
}
}catch (ex){
print('$ex');
}
print(products);

}

我希望看到这样的 list
[{ProductID:155,名称:Multi-vit,说明:Multi-vit,CostPrice:0.0,SalePrice:80,EatOutPrice:80,CategoryID:976,条形码:TaxRateID:null,}

最佳答案

根据shared_preference的repo,应该可以存储列表。他们的测试用例与您的语法略有不同:preferences.setStringList('List', kTestValues2['flutter.List'])与您的方法不同。

我假设您已将products定义为列表。

编辑:
为什么将列表存储在列表中?如果将结果设为字符串会怎样?

关于dart - 我可以存储具有共享首选项的List <dynamic>吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55762143/

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