Hello, a JSON has a 'long' type field "id":
I convert the JSON with this code:
TYDCommonResponse = record
code: NativeInt;
data: JSValue;
message: String;
status: String;
timestamp: NativeUInt;
end;
......
var
TmpResponse: TYDCommonResponse;
......
TmpResponse:=TYDCommonResponse(TJSJSON.parse(Req.responseText));
But I found the value of the field "TmpResponse.data.id" is "1466591939850948600", the last two numbers are wrong.
Anyone knows why this happens??
