这个错误是我在使用react中jsx语法,写html标签的时候遇到的

解决办法
根绝console控制台的提示信息
将如下标签中的for改为htmlFor
<label for="name">Name</label>

即:
<label htmlFor="name">Name</label>