让我们来解释一下我的问题...假设有一个json对象,如
from this picture i want to handle offer_price keyenter image description here显示器
{
"product": [
{
"id": 1,
"price": 100.0,
"offer_price": 40
},
{
"id": 2,
"price": 80.0,
"offer_price": 10.50
},
{
"id": 3,
"price": 200.0,
"offer_price": "40.5"
},
{
"id": 4,
"price": 100.0,
"offer_price": null,
}
]
}
2条答案
按热度按时间zaqlnxep1#
ecbunoof2#
在dart数据模型的
offer_price
字段中,将其数据类型设置为dynamic,这样就可以将动态数据设置为run类型。在任何地方使用此变量时,只需检查变量的runtimeType,并通过类型转换或仅将其用于.toString()
。例如班级:
对于消费它只是尝试: