其他分享
首页 > 其他分享> > JS | TS 自定义 object 的 json 序列化

JS | TS 自定义 object 的 json 序列化

作者:互联网

class Point{
  x = 0;
  y = 0;
  z = 0;

  toJSON(){
    return [this.x,this.y];
  }
}

let point = new Point();
console.log(JSON.stringify(point));

标签:stringify,toJSON,自定义,point,object,Point,序列化
来源: https://www.cnblogs.com/chilli-with-fish/p/15180716.html