gpt4 book ai didi

sequelize.js - sequelize toJSON 的自定义序列化

转载 作者:行者123 更新时间:2023-12-03 22:22:28 24 4
gpt4 key购买 nike

目前 sequelize 将序列化这样的实例

 id: 2,
title: 'bla bla',
url: 'https://mail.google.com/mail/u/0/#inbox/14c6002a21ae0679',
createdAt: Sat Mar 28 2015 18:58:42 GMT+0800 (SGT),
updatedAt: Sat Mar 28 2015 18:58:42 GMT+0800 (SGT),
userBookmarks:
{ createdAt: Sat Mar 28 2015 18:59:16 GMT+0800 (SGT),
updatedAt: Sat Mar 28 2015 18:59:16 GMT+0800 (SGT),
userId: 1,
bookmarkId: 2 } }

我只想强调这种关系的序列化方式。这是一个书签模型,并希望构建或使用一个库,该库一般修改 userbookmarks xxx 到 user:[] 的关系;

有任何想法吗 ?

最佳答案

您可以提供自定义 toJSON 函数:

var model = sequelize.define(name, attributes, {
instanceMethods: {
toJSON: function () {
var values = this.constructor.prototype.toJSON.call(this);
// Do your magic here
}
}
});

关于sequelize.js - sequelize toJSON 的自定义序列化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29316580/

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