单击下面的链接时,我想设置导航到不同的路线。
<Link to={'/q/${item.qID}'} style={{ textDecoration: 'none' }}>{item.qContent}</Link>
真正的结果是
http://localhost:3000/q/$%7Bitem.qID%7D
预期结果为
http://localhost:3000/q/122
(122=项目.qID(
格式错误,为了使用动态字符串,您必须将字符串包装在反勾字符(`(中。
参考