我在我的项目中使用React钩子,需要尝试解决如何在状态值发生变化时动态地将类添加到类名中。我正在使用
react hook表单
验证我的表单。
RegisterForm.jsx
<input
className={styles.authoriseInput}
placeholder="Email"
name="email"
ref={register({required: true, minLength: 4})} # supposed to be a regex, but too long for this question
/>
{errors.email &&
<p className={styles.errors}>Please enter a valid email.</p>
}
第二部分正常工作,当出现错误时,
非常感谢您的建议。
谢谢
可以有条件地设置类名
,方法与渲染零部件相同。
<input
className={errors.email && styles.authoriseInput}
placeholder="Email"
name="email"
ref={register({required: true, minLength: 4})} # supposed to be a regex, but too long for this question
/>
{errors.email &&
<p className={styles.errors}>Please enter a valid email.</p>
}
向clasName属性添加条件
<input
className={errors.email ? styles.errorInput : styles.authoriseInput}
placeholder="Email"
name="email"
ref={register({required: true, minLength: 4})} # supposed to be a regex, but too
long for this question
/>
{errors.email &&
<p className={styles.errors}>Please enter a valid email.</p>
}
说明 支付宝境外到店支付-更新商户二维码状态 官方文档:https://global.alipay.com/service/merchant_QR_Code/34 类 请求参数类 请求参数 类名:\Yurun\PaySDK\AlipayCrossBorder\InStore\ModifyStatus\Request 属性 名称 类型 说明 $service string 接口名称 $timesta
我有一个组件,看起来像: 它从datepicker组件获取currentDate属性,如下所示: 当我从日期选择器中选择新日期时,this.props.current子组件上的日期会更新。这是我想要的日期。但是,当更新该prop时,它不会用新的预期数据重新呈现表。我意识到我必须更新子表的状态才能重新渲染。我试图通过设置当前日期:this.props.current日期来设置ftchData()方法
我的Redux状态是如何更新的,可以在pokelist.js文件中注销,但是我的状态变量没有设置好,cardList还是一个空数组,我如何正确设置状态?我注销pokelist.js文件中的集合,它首先注销一个空数组,然后是一个包含元素的数组。
接口说明 更新素材状态 如需调用,请访问 开发者文档 来查看详细的接口使用说明 该接口仅开放给已获取SDK的开发者 API地址 POST /wish3dearth/api/material/v1.0.0/changeMaterialStatus 是否需要登录 是 请求字段说明 参数 类型 请求类型 是否必须 说明 token string header 是 当前登录用户的TOKEN materia
接口说明 更新素材状态 如需调用,请访问 开发者文档 来查看详细的接口使用说明 该接口仅开放给已获取SDK的开发者 如开启https功能,请求地址的协议应改为https,如:https://www.example.com/wish3dearth/api/access/v1.0.0/getLicenseInfo API地址 POST /wish3dearth/api/material/v1.0.0/
问题内容: 我希望从我的观点动态更新ModelForm的内联Meta类。尽管此代码似乎更新从元类的排除列表,输出,等不反映更新的Meta排除。 然后,我假定在创建ModelForm时而不是在调用时生成html 。有没有办法强制更新HTML? 这甚至是最好的方法吗?我只是认为这 应该 工作。 有什么想法吗? 问题答案: Meta类用于动态构造表单定义-因此,在创建ModelForm实例时,不包含在不