通过params传递参数,但是只能传递一个参数吗?
//路由配置<Route path="/Article/:id" component={Article} />//调用方法this.props.history.push(`/Article/${id}`)
这种方法只能传递一个参数吗? 。。。如果传递多个参数应该怎么写?
相关分类