美文网首页大前端
antd pro 中 ProFormDependency 和 P

antd pro 中 ProFormDependency 和 P

作者: jack钱 | 来源:发表于2022-07-22 17:33 被阅读0次

    ProFormDependency 和 ProFormSelect 组合使用时,
    不是每次修改依赖值都会触发ProFormSelect 的request远程请求函数,貌似是2次触发一次
    代码:

    <ProFormDependency name={['attendance_org_id']}>
      {({ attendance_org_id }) => {  // 1处
        return (
          <ProFormSelect
            debounceTime={300}
            name="dayoff_id"
            showSearch
            label='标题'
            rules={[{ required: true, message: formatMessage({ id: 'component.required' }) }]}
            request={async () => {
              let arr: any = [];
              if (attendance_org_id) {   // 这里直接使用 1处 的变量,导致不是每次都会监听到
                let res = await queryByOrgId({org_id: attendance_org_id});
                if (res && res.data) {
                  arr = res.data.map((v: any) => {
                    return {
                      label: v.name,
                      value: v.id
                    };
                  });
                }
              }
              return arr;
            }}
          />
        );
      }}
    </ProFormDependency>
    

    问题:参数不能直接使用,要使用params传入,修改后的代码:

    <ProFormDependency name={['attendance_org_id']}>
      {({ attendance_org_id }) => {
        return (
          <ProFormSelect
            debounceTime={300}
            name="dayoff_id"
            showSearch
            label='标题'
            rules={[{ required: true, message: formatMessage({ id: 'component.required' }) }]}
            params={{ attendance_org_id }}  // 使用params属性,传入request
            request={async ({ attendance_org_id }) => {  // request使用params传入的参数,每次都触发了
              let arr: any = [];
              if (attendance_org_id) {
                let res = await queryByOrgId({org_id: attendance_org_id});
                if (res && res.data) {
                  arr = res.data.map((v: any) => {
                    return {
                      label: v.name,
                      value: v.id
                    };
                  });
                }
              }
              return arr;
            }}
          />
        );
      }}
    </ProFormDependency>
    

    相关文章

      网友评论

        本文标题:antd pro 中 ProFormDependency 和 P

        本文链接:https://www.haomeiwen.com/subject/ivamirtx.html