我正在使用React和Redux。在某些时候,我有一个链接,我想在更改路由之前为此链接添加延迟。
render(){
return(
<div>
<h3>New note for {this.props.match.params.user}</h3>
<input placeholder="Your note" onChange = {(e)=>this.handleChange(e)}/>
<Link to={`/board/${this.props.match.params.user}`} >
<br/>
<button onClick={(e) => {this.validateNote()}}>Add this now !</button>
</Link>
</div>
);
}
我该怎么做?
答案 0 :(得分:1)