类型转换
2020-07-28 本文已影响0人
zZ_d205
var temp=cartString==null?[]:json.decode(cartString.toString());
// 转换为list形式
List tempList=(tempas as List).cast();
// 转化为字符串
cartString=json.encode(tempList).toString();
var temp=cartString==null?[]:json.decode(cartString.toString());
// 转换为list形式
List tempList=(tempas as List).cast();
// 转化为字符串
cartString=json.encode(tempList).toString();