我想在 MongoDB 中实现如下效果(递归查询子节点),可以实现么?
多层级,我想一次性递归查询子节点
用 MongoDB 实现评论和回复存储,schema 优雅的设计应该是怎样的,我想着通过 parentId 和 id 关联
<resultMap id="xxx" type="xxxx">
<id column="id" jdbcType="BIGINT" property="id" />
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="pid" jdbcType="BIGINT" property="name" />
<collection property="children" column="id" ofType="xxx" select="selectSubItemByPid"/>
</resultMap>
<select id="selectSubItemByPid" parameterType="xxx" resultMap="xxx">
select * from xxx where pid = #{pid}
</select>
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.