mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 06:15:11 +00:00
fix: model toJSON
This commit is contained in:
parent
77225a4e25
commit
84e52448f5
@ -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,
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user