gpt4 book ai didi

javascript - 将变量传递给静态谷歌图像映射

转载 作者:行者123 更新时间:2023-11-30 15:06:22 25 4
gpt4 key购买 nike

我有一个变量,用于存储地址。我想将它传递给谷歌地图静态 api:

像这样

adr = comp.adress; 
console.log(adr);// 28, rue Armand Carrel
<img src="https://maps.googleapis.com/maps/api/staticmap?center={adr}&amp;size=600x300" alt="exemple" />

我没有得到 adr 的值代码有什么问题?

要处理的空间

 "addr": "\n                \n                28, rue Armand Carrel \n              ",

谢谢

最佳答案

您在自己的系统中所做的只是读取 {adr} 作为字符串的一部分。

假设以上是在 React/ES6/ES2015 中。

您需要将它连接到字符串:

<img src={"https://maps.googleapis.com/maps/api/staticmap?center=" + adr + "&amp;size=600x300"} alt="exemple" />`

或者您可以使用 template literals :

<img src={`https://maps.googleapis.com/maps/api/staticmap?center=${adr}&amp;size=600x300`} alt="exemple" />`

关于javascript - 将变量传递给静态谷歌图像映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45692684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com