react组件的提取和优化(官网来的,后续再更)

这一篇也是对比官网提出的
下面是原版,嵌套严重的

<div id="root"></div>
function formatDate(date) {
  return date.toLocaleDateString();
}

function Comment(props) {
  return (
    <div className="Comment">
      <div className="UserInfo">
        <img
          className="Avatar"
          src={props.author.avatarUrl}
          alt={props.author.name}
        />
        <div className="UserInfo-name">
          {props.author.name}
        </div>
      </div>
      <div className="Comment-text">{props.text}</div>
      <div className="Comment-date">
        {formatDate(props.date)}
      </div>
    </div>
  );
}

const comment = {
  date: new Date(),
  text: 'I hope you enjoy learning React!',
  author: {
    name: 'Hello Kitty',
    avatarUrl: 'https://placekitten.com/g/64/64',
  },
};
ReactDOM.render(
  <Comment
    date={comment.date}
    text={comment.text}
    author={comment.author}
  />,
  document.getElementById('root')
);

这是提取后的

<div id="root"></div>
function formatDate(date) {
  return date.toLocaleDateString();
}

function Avatar(props) {
  return (
    <img
      className="Avatar"
      src={props.user.avatarUrl}
      alt={props.user.name}
    />
  );
}

function UserInfo(props) {
  return (
    <div className="UserInfo">
      <Avatar user={props.user} />
      <div className="UserInfo-name">{props.user.name}</div>
    </div>
  );
}

function Comment(props) {
  return (
    <div className="Comment">
      <UserInfo user={props.author} />
      <div className="Comment-text">{props.text}</div>
      <div className="Comment-date">
        {formatDate(props.date)}
      </div>
    </div>
  );
}

const comment = {
  date: new Date(),
  text: 'I hope you enjoy learning React!',
  author: {
    name: 'Hello Kitty',
    avatarUrl: 'https://placekitten.com/g/64/64',
  },
};
ReactDOM.render(
  <Comment
    date={comment.date}
    text={comment.text}
    author={comment.author}
  />,
  document.getElementById('root')
);

当你在React中使用Ant Design库的Form组件,并尝试通过`getFieldDecorator`从`antd`中获取表单字段,然后将它包装到自定义组件上时,有时候可能会遇到验证规则(`rules`)未生效的问题。这通常是由于以下几个原因: 1. **规则传递**:你需要确保正确地将`rules`对象传递给自定义组件。通常,`getFieldDecorator`返回了一个包含验证信息的对象,你需要从中提取出`validate`属性并将其作为props传递。 ```jsx const { validate } = getFieldDecorator('yourField', { rules: [ { required: true, message: '必填' }, // 其他验证规则... ] })(CustomComponent); <CustomComponent {...validate} /> ``` 2. **组件内部处理**:在自定义组件内部,你需要检查接收到的`validate`对象,并在其`handleValidate`或其他处理验证的地方应用规则。确保在`onSubmit`或类似事件触发时正确调用了`this.props.validate`. ```jsx class CustomComponent extends React.Component { handleSubmit = (e) => { e.preventDefault(); this.props.validate({ value: this.state.value }, { firstTime: true }); // ... }; render() { // ... } } ``` 3. **时机问题**:`rules`可能只在首次渲染时起作用,如果你在后续操作中动态改了`rules`,需要手动触发验证。可以考虑在`setState`后调用`this.props.validate`。 4. **错误处理**:确认`validate`函数返回的错误是否被正确捕获和显示给用户,可能是验证失败但并未正确呈现提示。 如果以上步骤都做了还是没有解决问题,可以检查一下是否是某个阶段的数据绑定问题或者是组件状态管理导致的。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值