本文主要是介绍【图文并茂】ant design pro 如何用 renderFormItem 结合 TreeSelect 实现一个多层树级搜索,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
上一篇 【图文并茂】ant design pro 如何优雅地实现查询列表功能
如上图所示
比如我们经常要查一些,商品分类下的所有的商品
类似这样的需求如何做。
我们以菜单为例,我们可以查找某个父类下的所有子菜单
当然最简单的做法,是提供一个 input text 框,让其输入菜单名称来查。
但是为了更好的用户体验,我们直接让客户去选,而不是输入菜单名
前端
前端的实现比较简单
直接上代码:
{title: intl.formatMessage({ id: 'parent_category' }),dataIndex: ['parent', 'name'],// @ts-ignore// eslint-disable-next-line @typescript-eslint/no-unused-varsrenderFormItem: (_, { type, defaultRender, formItemProps, fieldProps, ...rest }, form) => {if (type === 'form') {return null;}return (<TreeSelectshowSearchstyle={{ width: '100%' }}dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}placeholder={intl.formatMessage({ id: 'select_parent_category' })}allowCleartreeNodeFilterProp="name"fieldNames={{ label: 'name', value: '_id' }}treeDefaultExpandAlltreeData={menus}loading={loading}{...fieldProps}/>);},},
TreeSelect 中的数据肯定是查出来的
这个 menus 肯定是远程查询到的。
关于这块的内容可以看之前的文章。
const { items: menus, loading } = useQueryList('/menus');
其实主要就是利用 renderFormItem 这个参数。
填充好组件就行。
TreeSelect 是有层级关系的。
如果不需要
可以用 Select 就没有层级了
类似它:
{title: '角色',width: 150,dataIndex: 'roles',renderText: (val: {name: string}[]) => val && val.map(role => role.name).join(', '),// @ts-ignorerenderFormItem: (_, {type, defaultRender, formItemProps, fieldProps, ...rest}, form) => {if (type === 'form') {return null;}return (<Form.Item name="roles"><SelectfilterOption={(input, option: any) =>(option?.label ?? '').toLowerCase().includes(input.toLowerCase())}showSearchoptions={roles.map((role: any) => ({label: role.name,value: role.id}))}allowClearplaceholder="请选择角色"/></Form.Item>);return defaultRender(_);}},
请求参数
这里值得注意的是要关注它的请求参数
点击查询之后,请求参数是这样的:
传的是 父级的 _id
后端
参数是怎样的,无所谓,只要对了,只要能传 _id 就行。
后端只需要取到值即可
const buildQuery = (queryParams: any): any => {const query: any = {};if (queryParams.name) {query.name = { $regex: queryParams.name, $options: 'i' };}if (queryParams.path) {query.path = { $regex: queryParams.path, $options: 'i' };}if (queryParams.parent) {try {query.parent = JSON.parse(queryParams.parent).name;} catch (error) {console.error('Failed to parse parent JSON:', error);query.parent = null;}} else {query.parent = null;}// Add recursive children queryif (queryParams.children) {query.children = [{ 'children.name': { $regex: queryParams.children, $options: 'i' } },// Add conditions for other child properties if needed];}return query;
};
主要还是这里:
if (queryParams.parent) {try {query.parent = JSON.parse(queryParams.parent).name;} catch (error) {console.error('Failed to parse parent JSON:', error);query.parent = null;}} else {query.parent = null;}
其实那个 name 就是 _id ,查一下即可
model 是这样的:
const menuSchema = new mongoose.Schema({name: { type: String, required: true },path: { type: String, required: true },parent: { type: mongoose.Schema.Types.ObjectId, ref: 'Menu' },permission: {type: mongoose.Schema.Types.ObjectId,ref: 'Permission',required: true,},},{ timestamps: true },
);
完结。
- ant design pro 如何去保存颜色
- ant design pro v6 如何做好角色管理
- ant design 的 tree 如何作为角色中的权限选择之一
- ant design 的 tree 如何作为角色中的权限选择之二
- ant design pro access.ts 是如何控制多角色的权限的
- ant design pro 中用户的表单如何控制多个角色
- ant design pro 如何实现动态菜单带上 icon 的
- ant design pro 的表分层级如何处理
- ant design pro 如何处理权限管理
- ant design pro 技巧之自制复制到剪贴板组件
- ant design pro 技巧之实现列表页多标签
- 【图文并茂】ant design pro 如何对接登录接口
- 【图文并茂】ant design pro 如何对接后端个人信息接口
- 【图文并茂】ant design pro 如何给后端发送 json web token - 请求拦截器的使用
- 【图文并茂】ant design pro 如何使用 refresh token 可续期 token 来提高用户体验
- 【图文并茂】ant design pro 如何统一封装好 ProFormSelect 的查询请求
- 【图文并茂】ant design pro 如何优雅地实现查询列表功能
获取 ant design pro & nodejs & typescript 多角色权限动态菜单管理系统源码
我正在做的程序员赚钱副业 - Shopify 真实案例技术赚钱营销课视频教程
这篇关于【图文并茂】ant design pro 如何用 renderFormItem 结合 TreeSelect 实现一个多层树级搜索的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!