高德地图天气api使用服务器代理验证安全密钥
2025-04-01 Umming js常用代码 评论(0) 浏览(17)
服务端代理配置nginx(放伪静态配置或者站点配置文件都行) # Web服务API 代理 location /_AMapService/ { set $args "$args&jscode=你的安全密钥"; proxy_pass https://restapi.amap.com/; } 前端 <script type="text/javascript"> window._AMapSecurityConfig = { serviceHost: "_AMapService" }; </script> <script type="text/javascript" src="https://webapi.amap.com/maps?v=2.0&key=你的key"></script> <script type="text/javascript"> AMap.plugin('AMap.Weather', function() { var weather = new AMap.Weather(); weather.getForecast('宿城区', function(err, data) { console.log(data); if(data.info=='OK'){ }else{ } }); }); </script>
下一篇: 极致cms上传图片转存一个webp字段
本文链接:https://www.umming.com/js/379.html
声明:本站信息由网友自行发布或来源于网络,真实性、合法性由发布人负责,请仔细甄别!本站只为传递信息,我们不做任何双方证明,也不承担任何法律责任。文章内容若侵犯你的权益,请联系本站删除!
也许你还会对下面的内容感兴趣:
发表评论: