- erro log
JsonException: Max allowed object depth reached while trying to export from type System.Single
LitJson.JsonMapper.WriteValue (System.Object obj, LitJson.JsonWriter writer, Boolean writer_is_private, Int32 depth)
- 해결법(solution)
float를 사용하지 않는다.
do not use float type
----
----
- erro log
JsonException: Can't assign value '0' (type System.Int32) to type System.Int64
LitJson.JsonMapper.ReadValue (System.Type inst_type, LitJson.JsonReader reader)
- 해결법(solution)
long형을 사용하지 않는다.
do not use long type
Update : 2019.05.08
조언감사합니다.
JsonMapper.RegisterImporter<int, long>((int value) =>
{
return (long)value;
});
'Programming' 카테고리의 다른 글
문자열) 숫자에 , (콤마) 넣기 (0) | 2017.03.17 |
---|---|
스파인 애니메이션 셋팅값 설정 (0) | 2017.03.07 |
Ftp 사용시 Anonymous 접근법 (0) | 2016.07.11 |
Lit json 파라메타(Param) (0) | 2016.06.28 |
가장 큰 정사각형을 찾는 문제 (0) | 2016.06.08 |