我想在下一个 js 中使用动态链接Image
。下一个 Js 建议
<Image
src="/me.png"
alt="Picture of the author"
width={500}
height={500}
/>
但我想使用喜欢
const imageDynamic = [Image][1]
<Image
src="https://en.wikipedia.org/wiki/Image#/media/File:Image_created_with_a_mobile_phone.png" or {imageDynamic}
alt="Picture of the author"
width={500}
height={500}
/>
图像将来自 api,因此图像 src 每次都会改变。我不能在下一个 js 图像中使用链接,可以在下一个 js 图像中使用链接吗?