How to parse a JSON data (type : BigInt) in TypeScript
问题 I have a simple request but It seems to be harder than expected. I have to parse a bigint from a JSON stream. The value is 990000000069396215 . In my code, this value is declared in TypeScript like this: id_address: bigint . But this is not working, the value is truncated, and return nothing like 9900000000693962100 How can I simply manage this bigint in my code? 回答1: I guess you need to do something like this, export interface Address { id_address: string; } Then somewhere in your code where