Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过子文档 id 在猫鼬中找到子文档。
我在做 :
mainDoc.subDocFieldName.id(sudocId);
但它显示
'cannot find property id of undefined'
好像mainDoc.subDocFieldName是undefined。
mainDoc.subDocFieldName
undefined
那么我如何访问子文档。?
我通过以下方式解决了这个问题:
mainDoc[subDocFieldName].id(sudocId);
实际上我使用的是 subDocument 数组。