react中装饰器的使用

本文介绍如何在React应用中使用装饰器来简化代码,将表单验证操作集中处理。通过定义装饰器函数,可以有效地统一处理多个表单验证场景。
摘要由CSDN通过智能技术生成

利用装饰器简化代码,将表单验证操作统一到一个装饰器中进行

首先装饰器的定义为修饰器(Decorator)是一个函数,用来修改类的行为。
建立一个装饰器

export default (Comp) => {
   
   class Cp extends Comp{
   
	 constructor(props){
   
            super(props);
            this.state = {
   
                ...this.state,
                errors: {
   

                },     
                 // error queuq
            this.errorQueue = {
   };
			}
            this.setEmailcode = this.setEmailcode.bind(this);
             this.callError = this.callError.bind(this);
            this.fIn = this.fIn.bind(this);
            this.bOut = this.bOut.bind(this);
                
    }
     setEmailcode(v){
   
            this._clearStateKey('emailcode', v);
            if(v.target.value.length < 7){
   
                this._changeHandler('emailcode', v);
            }
        }
        ckemailcode(){
   
		let rt = true;
          	 const errors = [];
         	 const KEY = 'gcode';
            	const intl = this.intl

            this._isEmpty(this.state[KEY], errors, intl.formatMessage({
   id: "请输入谷歌验证码"}));
            //验证是否符合规则,不符合则扔到errors队列中去
            this._setError(KEY, error
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值