首页 > 解决方案 > react-select:如何解决“警告:道具`id`不匹配”

问题描述

我有一个带有 ReactJs 和 NextJs 的网络应用程序。在功能组件中,我使用了react-select,然后收到以下控制台警告:

警告:道具id不匹配。服务器:“react-select-7-input” 客户端:“react-select-2-input”

我的代码如下:

import { Row, Col, Card, Form, Button } from 'react-bootstrap';
import Select from 'react-select';

const priorityOptions = [
  { value: 'p1', label: 'Top level - P1' },
  { value: 'p2', label: 'Mid level - P2' },
  { value: 'p3', label: 'Low level - P3' }
];
const PostView = () => {
  return (
    <div className="DashboardSla-ContentBody__Form">
      <Row>
        <Col md="10">
          <Card className="shadow-sm">
            <Card.Body>
              <Form>
                <h5 className="text-secondary mb-3">Booking details</h5>
                <Form.Group controlId="postType">
                  <Form.Label>Booking priority</Form.Label>
                  <Select 
                    id="postType"
                    placeholder="Make a selection"
                    options={priorityOptions}
                  />
                </Form.Group>
                <Button
                  type="submit"
                  variant="primary"
                >Add Booking</Button>
              </Form>
            </Card.Body>
          </Card>
        </Col>
      </Row>
    </div>
  )
}

export default PostView;

标签: javascriptreactjsnext.jsreact-select

解决方案


尝试将道具instanceId集添加为唯一字符串并且应该可以工作


推荐阅读