gpt4 book ai didi

android - Flutter 从 GetStorage 列表中获取数据值

转载 作者:行者123 更新时间:2023-12-05 00:18:20 33 4
gpt4 key购买 nike

我想从 GetStorage() 获取数据,
我有一个商店列表,我可以将它用作静态页面,这样我就可以将我的列表保存在 GetStorage 中,如果我转到另一个也会显示的页面。就像一个 SharedPreferences。我如何显示来自 GetStorage List Value 的数据,例如
Text(basket[name]),将只显示名称,
Text(basket[price]),将只显示价格,

var basketsd = GetStorage("totalList");
我的商店产品模型,
class PriceModel2 {
final String name;
final double price;
PriceModel2({
this.name,
this.price,
});
}
它也不起作用。
Text(controller.basketsd.read(["name"])

Container(
height: Get.size.height * 0.3,
child: Obx(() => ListView.builder(
itemCount: controller.basket.length,
itemBuilder: (BuildContext context, int index) {
return Column(
children: [
SizedBox(
height: 20,
),
Container(
width: Get.size.width,
child: ElevatedButton(
onPressed: () {
controller.basket
.remove(controller.basket[index]);
},
child: (Text(controller.basketsd.read(["name"]) +
" " +
controller.basket[index].price.toString() +
" €"))),
),
SizedBox(
height: 20,
),
],
);
})),
),
代码显示如下,
( https://prnt.sc/1fs6mbf)

最佳答案

这里有几个问题。至少从您分享的内容来看,您永远不会真正存储您的 PriceModel2正确地反对。如果您尝试存储随机自定义对象,GetStorage将不知道如何处理它。 (在相同情况下 SharedPreferences 也不会)。
因此,对于初学者,您可以实现 toMap将其转换为 GetStorage 的 map 的函数可以阅读。
将此添加到您的 PriceModel2类(class)。

  Map<String, dynamic> toMap() {
return {
'name': name,
'price': price,
};
}
然后在同一个类中添加一个命名构造函数,这样你就可以从 Map 创建你的对象。你存储的。
 PriceModel2.fromMap(Map map)
: name = map['name'],
price = map['price'];
我还建议,无论您使用哪个存储库,都保留所有与存储相关的功能,包括 boxes在这种情况下,在它自己的类中,存储和返回您需要的任何数据。如果您需要升级到 Hive,请使用这种方式, ObjectBox等等......你在一个类上做,而不是在你的应用程序上做。
一个例子看起来像这样。
class Database extends GetxController {
final box = GetStorage();

Future<void> initStorage() async {
await GetStorage.init();
}

void storePriceModel(PriceModel2 model) {
box.write('model', model.toMap());
}

PriceModel2 restoreModel() {
final map = box.read('model') ?? {};
return PriceModel2.fromMap(map);
}
}

然后你将在 main.xml 中初始化你的 Controller 和存储。
void main() async {
await Get.put(Database()).initStorage();
runApp(MyApp());
}
存储模型的示例如下所示。
     ElevatedButton(
onPressed: () {
final model = PriceModel2(name: 'test name', price: 23.0);
Get.find<Database>().storePriceModel(model);
},
child: Text('Store Model'),
),
并且可以像这样在 UI 中显示存储数据。
Text(Get.find<Database>().restoreModel().name)

您不需要 Obx只是为了显示存储的数据,因为它不是基于流的可观察变量。
至于显示产品列表,您执行相同的操作,但存储 map 列表而不是单个 map 。
如果您需要帮助,请分享您如何尝试添加和存储到 PriceModel2列表。

关于android - Flutter 从 GetStorage 列表中获取数据值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68520975/

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