当访问Flutter API以列表中的数据显示时,我如何修复'string not a subtype of int'错误?

fzwojiic  于 2023-05-23  发布在  Flutter
关注(0)|答案(1)|浏览(147)

enter image description here
我不知道这为什么告诉我这些?
发生异常。

_TypeError(类型“String”不是“index”的类型“int”的子类型)
我试图访问我的API来显示我的列表中的数据,但它一直告诉我异常已经发生。_TypeError(类型“String”不是“index”的类型“int”的子类型)
那我该怎么办

wrrgggsh

wrrgggsh1#

如果没有代码可以查看,我无法具体告诉您,但这里是如何解决此类错误的。
将string转换为int:

String stringValue = "42";
int intValue = int.parse(stringValue);

将int转换为字符串:

int intValue = 42;
String stringValue = "The value is: " + intValue.toString();

相关问题