【发布时间】:2021-08-27 21:14:33
【问题描述】:
目前我正在尝试将用户重定向到一个特定的链接,该链接在我的 CMS 中作为数据值填写,在我的例子中是 Strapi。我正在使用<a href> 重定向用户,但这样做会将我带到此 URL http://localhost:3000/www.google.com。如何从我的 URL 中删除 localhost 部分。
此外,我也尝试过使用 next/link,但我得到了相同的输出。
目前这是我的代码:
<a href={item.LinkedIn} target="_blank">
<img
style={{
height: "20px",
width: "20px",
backgroundColor: "white",
}}
src="linkedin.svg"
/>
</a>
【问题讨论】: