在mongoose中使用populate方法实现集合关联时,导致模板引擎art-template无法渲染
RangeError: Maximum call stack size exceeded
at Buffer.get [Symbol.toStringTag] (《anonymous》)
at Buffer.toString (《anonymous》)
(如果前面使用JSON.parse转换数据类型会报这个错误)
SyntaxError:Unexpected token R in JSON at position 0 ;
at JSON.parse《anonymous》
解决办法:
1:在populate后面加lean方法;
例:.populate().lean();
注意:
lean():是告诉mongoose返回的是普通对象,而不是mongoose文档对象
2.先通过JSON.stringify()这个方法将文档对象转为字符串,将他的其他属性全部格式掉,只需要留下需要的数据字符串即可!
然后再通过JSON.parse()这个方法转为对象,这个方法虽然丢失效率,但是暂时解决问题。