1、问题原因 数据进行 setState 的时候,页面已经退出了。
2、问题处理
//增加个 mounted 属性是否存在的判断即可。 if (mounted) {setState(() {dataList = dataList;});}