gpt4 book ai didi

javascript - 如何使 JSON.stringify 仅序列化 TypeScript getter?

转载 作者:搜寻专家 更新时间:2023-10-30 21:06:56 25 4
gpt4 key购买 nike

我有以下类结构:

export abstract class PersonBase {
public toJSON(): string {
let obj = Object.assign(this);
let keys = Object.keys(this.constructor.prototype);
obj.toJSON = undefined;
return JSON.stringify(obj, keys);
}
}

export class Person extends PersonBase {

private readonly _firstName: string;
private readonly _lastName: string;

public constructor(firstName: string, lastName: string) {
this._firstName = firstName;
this._lastName = lastName;
}

public get first_name(): string {
return this._firstName;
}

public get last_name(): string {
return this._lastName;
}
}

export class DetailPerson extends Person {

private _address: string;

public constructor(firstName: string, lastName: string) {
super(firstName, lastName);
}

public get address(): string {
return this._address;
}

public set address(addy: string) {
this._address = addy;
}
}

我正在尝试让 toJSON 输出完整对​​象层次结构中的所有 getter(不包括私有(private)属性)。

因此,如果我有一个 DetailPerson 实例并调用了 toJSON 方法,我希望看到以下输出:

{
"address": "Some Address",
"first_name": "My first name",
"last_name": "My last name"
}

我使用了 this Q&A 中的解决方案之一但它并没有解决我的特定用例 - 我没有在输出中得到所有的 setter/getter 。

我需要在此处更改什么才能获得我正在寻找的结果?

最佳答案

您提供的链接使用 Object.keys,它省略了原型(prototype)上的属性。

您可以使用 for...in 而不是 Object.keys:

public toJSON(): string {
let obj: any = {};

for (let key in this) {
if (key[0] !== '_') {
obj[key] = this[key];
}
}

return JSON.stringify(obj);
}

编辑: 这是我尝试递归地只返回 getter,而不假设非 getter 以下划线开头。我确定我错过了一些陷阱(循环引用、某些类型的问题),但这是一个好的开始:

abstract class PersonBase {
public toJSON(): string {
return JSON.stringify(this._onlyGetters(this));
}

private _onlyGetters(obj: any): any {
// Gotchas: types for which typeof returns "object"
if (obj === null || obj instanceof Array || obj instanceof Date) {
return obj;
}

let onlyGetters: any = {};

// Iterate over each property for this object and its prototypes. We'll get each
// property only once regardless of how many times it exists on parent prototypes.
for (let key in obj) {
let proto = obj;

// Check getOwnPropertyDescriptor to see if the property is a getter. It will only
// return the descriptor for properties on this object (not prototypes), so we have
// to walk the prototype chain.
while (proto) {
let descriptor = Object.getOwnPropertyDescriptor(proto, key);

if (descriptor && descriptor.get) {
// Access the getter on the original object (not proto), because while the getter
// may be defined on proto, we want the property it gets to be the one from the
// lowest level
let val = obj[key];

if (typeof val === 'object') {
onlyGetters[key] = this._onlyGetters(val);
} else {
onlyGetters[key] = val;
}

proto = null;
} else {
proto = Object.getPrototypeOf(proto);
}
}
}

return onlyGetters;
}
}

关于javascript - 如何使 JSON.stringify 仅序列化 TypeScript getter?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44315383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com