React确保元素ID保持唯一吗?

huangapple go评论72阅读模式
英文:

Does React make sure an element id stays unique?

问题

在项目中多次使用这些组件时,即使我们明确设置了id = "brandName"id属性保持唯一的原因是因为React会为每个组件的实例创建一个独立的虚拟DOM。虽然你在多个组件中设置了相同的id,但这些id实际上是在不同的虚拟DOM节点上使用的,因此不会导致相同的id出现在实际渲染的HTML中。这是React在内部处理的一部分,确保DOM的正确性。

换句话说,React在构建实际的DOM元素时,会确保id是唯一的,即使你在多个组件中使用相同的id。这是React的一个关键特性,它通过虚拟DOM的机制来管理和确保DOM的一致性。

英文:

Lets stay we have two components: ItemForm and Inpunt . I am passing label and id props to Input, :

const ItemForm = () => {
  return (
    <form>
      <Input
        label= "Name:"
        input={{
          id: "brandName",
          type: "text"
        }}
      />
    </form>
  );
};

And here we have the Input component:

const Input = (props) => {
  return (
    <div>
      <label htmlFor={props.input.id}>{props.label}</label>
      <input {...props.input} />
    </div>
  );
};

My question is: when we use these components multiple times in a project, how does the id prop remains unique, even when we are explicitly saying that id = "brandName" ? (similar to writing plain html when we can't have more than one instance of an id.)

PS : It works when I use these components, but I want to know WHY and HOW it works under the hood!

答案1

得分: 0

不仅如此(只需连续两次使用相同id的<Input>)。

一个可能的解决方案是在id后附加一个唯一标识符,以确保它是唯一的:

import { nanoid } from "nanoid";

function getId(id) {
  return `${id}_${nanoid()}`;
}

const Input = ({ input, label }) => {
  const id = getId(input.id);
  return (
    <div>
      <label htmlFor={id}>{label}</label>
      <input {...input} id={id} />
    </div>
  );
};

我在这个示例中使用了nanoid

英文:

It doesn't (just use &lt;Input&gt; twice in a row with the same id).

A possible solution is to append a unique identifier to the id to make sure it is unique:

import { nanoid } from &quot;nanoid&quot;;

function getId(id) {
  return `${id}_${nanoid()}`;
}

const Input = ({ input, label }) =&gt; {
  const id = getId(input.id);
  return (
    &lt;div&gt;
      &lt;label htmlFor={id}&gt;{label}&lt;/label&gt;
      &lt;input {...input} id={id} /&gt;
    &lt;/div&gt;
  );
};

I used nanoid for this example.

huangapple
  • 本文由 发表于 2023年5月7日 05:34:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/76191254.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定