js手机号码校验

手机号码校验

 const reg = /^1([0-9]*)?$/;
    if ((reg.test(tel) && tel.length === 11) || tel === '') {
      this.setState({
        tel: '',
      });
    } else {
      alert('您输入的手机号码有误');
      return;  //  有误则停止执行
    }
    this.setState({ uat }, () => {
      this.getUatData();
    });
  };

post请求

回调函数中触发,uat中获得要传给后端的数据。

this.setState({ uat }, () => {
      this.getUatData();
    });

你可能感兴趣的:(javascript)