这个我最后咩有用ajax,用state状态改的路径, <Form.Item label="验证码" > {getFieldDecorator('verifyInput', { rules: [{required: true, message: '请输入验证码!'}] })( <Input/> )} <div> <img src={this.state.verify} alt="验证码" onClick={this.handleVerify}/> <span onClick={this.handleVerify}>点击更换</span> </div> </Form.Item> 。。。 handleVerify = () => { this.setState({verify: `/v1/api/userinfo/getVerify?${Math.random()}`}); }
这个我最后咩有用ajax,用state状态改的路径,
。。。