Co-authored-by: hello@lv <2256334253@qq.com> Co-authored-by: wjh <wwwjh0710@163.com> Co-authored-by: sealday <sealday@gmail.com> Reviewed-on: daoyoucloud/tachybase#719
18 lines
460 B
TypeScript
18 lines
460 B
TypeScript
import { Model } from '@tachybase/database';
|
|
|
|
export function toJSON(data: any): any {
|
|
if (Array.isArray(data)) {
|
|
return data.map(toJSON);
|
|
}
|
|
if (!(data instanceof Model) || !data) {
|
|
return data;
|
|
}
|
|
const result = data.get();
|
|
Object.keys((<typeof Model>data.constructor).associations).forEach((key) => {
|
|
if (result[key] != null && typeof result[key] === 'object') {
|
|
result[key] = toJSON(result[key]);
|
|
}
|
|
});
|
|
return result;
|
|
}
|