such as the question: how to solve such a situation? Write a way to process keywords before submission and then splice it up?
Code:
<form acceptCharset="gbk" method="get" action="https:xxx_search.htm?product=true&tags=123" >
<div className="searchBar">
<input className="searchVal" placeholder=""
value={this.state.value} name="keywords"
onChange={event => {
this.setState({
value: event.target.value,
});
}} />
<button className="searchBtn" type="submit"></button>
</div>
</form>