Unity使用LitJson保存数据报错:Max allowed object depth reached while trying to export from type System.Single

tech2022-08-18  128

在进行类转json字符串时,报错:

JsonException: Max allowed object depth reached while trying to export from type System.Single。

ok,实际上是类的属性中有json不能识别的数据类型。 JsonData可以解析的数据类型包括如下:

public JsonData(bool boolean); public JsonData(double number); public JsonData(int number); public JsonData(long number); public JsonData(object obj); public JsonData(string str);

所以去除掉float吧!

最新回复(0)