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.
我正在做一个项目,我需要客户选择一个复选框列表,尽管一些复选框包含嵌套的复选框,这些复选框也需要被选中(根据客户的需要)。
尽管我付出了很多努力,但我无法推断出一种方法来保存并仅在下一页上显示选定复选框的列表。
我在这里很困惑。我已经了解了很多工具,但它们都是基于客户端的工具,例如ajax accordion等等。因为我打算在服务器端使用它,所以所有方法都失败了。
ajax
accordion
我打算创建一个由机构选择的课程和分支列表。
先感谢您。
所以...复选框可以有父复选框。规范结构是自引用的:
create table boxes ( box int primary key, parent int ) select a.*, b.box as 'sub-box' from boxes as a join boxes as b on b.parent = a.box
这给了你一个层次。要获得整个层次结构,请使用递归视图。