打开外部 URL 但打开 localhost:3000/www.google.com
open external URL but opens localhost:3000/www.google.com
我正在尝试打开外部 URL,但它没有在新选项卡中打开 www.google.com,而是打开了 http ://localhost:3001/www.google.com
<IconButton key={index} size="large" color="primary" href={e.url} target={"_blank"} aria-label="menu" style={{zIndex:100}} >
<img style={{width:'30px', height:'30px', maxHeight:'30px', maxWidth:'30px'}} href={e.url} target="_blank"
src={icon}/>
</IconButton>
尝试将 'https://' 添加到 url 的开头,使其成为绝对 URL - 否则它认为它是相对于当前的 link URL.
我正在尝试打开外部 URL,但它没有在新选项卡中打开 www.google.com,而是打开了 http ://localhost:3001/www.google.com
<IconButton key={index} size="large" color="primary" href={e.url} target={"_blank"} aria-label="menu" style={{zIndex:100}} >
<img style={{width:'30px', height:'30px', maxHeight:'30px', maxWidth:'30px'}} href={e.url} target="_blank"
src={icon}/>
</IconButton>
尝试将 'https://' 添加到 url 的开头,使其成为绝对 URL - 否则它认为它是相对于当前的 link URL.