ruby on rails (实现无限极分类)
Posted 大郎,起来喝药了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby on rails (实现无限极分类)相关的知识,希望对你有一定的参考价值。
一、在model里面引入如下,它会自动识别这是一个树形结构
has_closure_tree
参考网址:
https://github.com/ClosureTree/closure_tree
添加
列表
二、具体使用
#自己关联自己
has_many :parent, class_name: 'LocationGroup', foreign_key: 'parent_id'
三、控制器
@location_groups = current_space.location_groups.includes(:locations, :space_roles, :parent).where(locations: id: location_ids, public: true, parent_id: nil)
四、json模版输出
以上是关于ruby on rails (实现无限极分类)的主要内容,如果未能解决你的问题,请参考以下文章