-
Notifications
You must be signed in to change notification settings - Fork 7.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
没有数据字典功能 #164
Comments
有没有好的示例,或者使用案例,我其实一直不明白数据字典如何使用,应用场景 |
font{
line-height: 1.6;
}
ul,ol{
padding-left: 20px;
list-style-position: inside;
}
这是在jeeplus 里的 数据字典,附件sql有表结构。数据字典,方便管理员维护系统类型的配置项,修改名称,删除或新增都不影响,并且不用改代码。
王一雄
[email protected]
签名由
网易邮箱大师
定制
在2019年04月19日 10:20,linlinjava<[email protected]> 写道:
有没有好的示例,或者使用案例,我其实一直不明白数据字典如何使用,应用场景
—You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or mute the thread.
|
-- Table structure for sys_dict_type DROP TABLE IF EXISTS -- Table structure for sys_dict_value DROP TABLE IF EXISTS |
我觉得有两个困惑地方: |
font{
line-height: 1.6;
}
ul,ol{
padding-left: 20px;
list-style-position: inside;
}
1、这个项目没有用前后的分离,用的标签。前端我不是很熟,应该可以用vuex来管理这些数据字典类型。2、后台使用如图,邮件附件里有相关代码。新增加的类型对应的业务逻辑当然还是再写的,所有这个功能是系统管理员来管理的。
王一雄
[email protected]
签名由
网易邮箱大师
定制
在2019年04月19日 10:29,王一雄<[email protected]> 写道:
font{
line-height: 1.6;
}
ul,ol{
padding-left: 20px;
list-style-position: inside;
}
这是在jeeplus 里的 数据字典,附件sql有表结构。数据字典,方便管理员维护系统类型的配置项,修改名称,删除或新增都不影响,并且不用改代码。
王一雄
[email protected]
签名由
网易邮箱大师
定制
在2019年04月19日 10:20,linlinjava<[email protected]> 写道:
有没有好的示例,或者使用案例,我其实一直不明白数据字典如何使用,应用场景
—You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or mute the thread.
|
可以参考eladmin 的数据字典 前段也是el的 |
个人觉得这个项目没必要用数据字典。 |
关于数据字典的使用,我觉得像 @zhangalex 说的,如果有需要再使用吧。 不要因为别的管理平台有数据字典就需要实现数据字典。 |
和业务耦合的字典是作用不大 |
一般业务系统都有数据字典,一般系统里的下拉框、状态都是可以用数据字典维护,更灵活一点。 |
我的理解数据字典作用是,如果后端对某个页面的某个多选项新加一个值并加入相应的业务逻辑, 前端(如vue)只要读数据字典的接口,自动就添加了新的值上去,不用改前端,虽然是挺好的,但也不是必需啦 ,毕竟不是经常改动,保持“轻”真好,方便教学 |
没有数据字典功能
The text was updated successfully, but these errors were encountered: