fix: model toJSON

This commit is contained in:
chenos 2023-06-09 21:33:33 +08:00
parent 77225a4e25
commit 84e52448f5

View File

@ -8,7 +8,7 @@ export const dateTemplate = async (ctx: Context, next) => {
await next();
if (isTemplate && actionName === 'get' && fields.length > 0) {
ctx.body = traverseJSON(ctx.body?.toJSON(), {
ctx.body = traverseJSON(JSON.parse(JSON.stringify(ctx.body)), {
collection: ctx.db.getCollection(resourceName),
include: fields,
});