为什么使用query配置参数路由跳转,参数没有传过去
来源:9-4 页面路由参数的传递
纷纷2004
2019-04-30
<Link key={item.get('id')} to={{pathname: '/detail', query: {id: item.get('id')}}}>
<ListItem key={item.get('id')}>
<img alt='' className='pic' src={item.get('imgUrl')} />
<ListInfo>
<h3 className='title'>{item.get('title')}</h3>
<p className='desc'>{item.get('desc')}</p>
</ListInfo>
</ListItem>
</Link>
为什么路由使用query跳转,参数没有传过去
写回答
1回答
-
Dell
2019-04-30
url 没有带过去是么
022019-05-05
相似问题