unity 使用litjson 时候出现JsonException: Can't assign value '3' (type System.String) to type System.Int32错

在使用litjson 解析数据时候,因为无法对string转换为int类型出现报错,

解决方法是在前加上

T t = LitJson.JsonMapper.ToObject(json);
//LitJson.JsonMapper.RegisterImporter((int input) => { return input.ToString(); });
        //LitJson.JsonMapper.RegisterImporter((string input) => { return Convert.ToInt32 (input); });

 

你可能感兴趣的:(java)