'
<Label >Movies:</Label> <Selected> {movie.map((item)=>{ return<> <Link><Option>{item.name}</Option></Link> </> })} </Selected>
我试图获得列表中每个元素的ID并使用参数属性,但它说不能在内部选择中使用链接。我尝试了许多库,但我不能。
qco9c6ql1#
试试这个:
<Label >Movies:</Label> <Selected> {movie.map((item)=>(<Option><Link href=`api/${item.id}`>{item.name}</Link></Option>) })} </Selected>
1条答案
按热度按时间qco9c6ql1#
试试这个: