bigint 서열화 JSON.stringify

1398 단어 면접 문제




    
    
    Document



    
        const map = new Map();
        map.set();
        const temp = {
            a: 1,
            b: 9999999999999999999999999999999999999n
        }
        try {
            console.log(JSON.stringify(temp));
        } catch (error) {
            console.log(error);
            //  
            BigInt.prototype.toJSON = function () { return `${this}` };
            console.log(JSON.stringify(temp));
        }


        //  
        const mapToObj = (map) => {
            const obj = Object.create(null);
            for (const [k, v] of map) {
                obj[k] = v === undefined ? null : v;
            }
            return obj;
        }
        const infoToString =(orderInfo)=> {
            return JSON.stringify({ ...orderInfo }, (k, v) => {
                if (typeof v === 'bigint') {
                    return `bigint${v}bigint`;
                }
                if (v instanceof Map) {
                    return this.mapToObj(v);
                }
                return v;
            }).replace(/.bigint(\d+)bigint./g, '$1');
        }

        console.log(infoToString(temp));
    



tips


아직 모르거나 친구를 사귀고 싶은 학생은 위챗으로 연락 주세요:qq981145483(비고:csdn)

좋은 웹페이지 즐겨찾기