gpt4 book ai didi

reactjs - 不断收到警告 : Invalid DOM property `autocomplete` . 您的意思是 `autoComplete` 吗?

转载 作者:行者123 更新时间:2023-12-04 02:55:25 24 4
gpt4 key购买 nike

我不断出现这个错误: “无效的 DOM 属性 autocomplete 。您是说 autoComplete 吗?” 当我在 上编译我的 React 项目时谷歌浏览器 .
当我尝试在 上编译代码时火狐 一切正常。

我想问一个问题:如何在谷歌浏览器上修复这个错误?为什么只在 Google Chrome 上显示此错误?

这是我的代码:

import React from "react";

import {
Container, Col, Form,
FormGroup, Label, Input,
Button,
} from 'reactstrap';

export default class Register extends React.Component{

render() {

return (
<div>

<Container>
<h2>Sign In</h2>
<Form>
<Col>
<FormGroup>
<Label>Email</Label>
<Input
type="email"
name="email"
id="exampleEmail"
placeholder="myemail@email.com"

autocomplete = "email"
/>
</FormGroup>
</Col>
<Col>
<FormGroup>
<Label for="PhoneNumber">Phone Number</Label>
<Input
type="Phone Number"
name="Phone Number"
id="exampleNumber"
placeholder="37060289225"
/>
</FormGroup>
</Col>
<Col>
<FormGroup>
<Label for="RepeatPassword">Repeat Password</Label>
<Input
type="password"
name="Repeat Password"
id="RepeatPassword"
placeholder="********"

autocomplete="new-password"
/>
</FormGroup>
</Col>
<Col>
<FormGroup>
<Label for="examplePassword">Password</Label>
<Input
type="password"
name="password"
id="examplePassword"
placeholder="********"

autocomplete = "new-password"
/>
</FormGroup>
</Col>

<Button>Submit</Button>
</Form>
</Container>
</div>
);
}
}

最佳答案

在您的输入中使用 Prop 自动完成功能时,它希望您将其替换为 autoComplete="new-password"

关于reactjs - 不断收到警告 : Invalid DOM property `autocomplete` . 您的意思是 `autoComplete` 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53354327/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com