1.错误
Uncaught TypeError: Cannot read properties of undefined (reading '0')
通过debugger去看status、result结果status为no_data,而result为空
2.原因
大概率就是key过期了或者配置错了
3.正确配置
</script>
<!-- 注意:导入密钥要在接口上面,纯顺序要求-->
<script type="text/javascript">
window._AMapSecurityConfig = {
securityJsCode: '安全密钥',
}
</script>
<script src="https://webapi.amap.com/maps?v=1.4.15&key=实际的key"></script>
这里面的key和securityJsCode就是高德里面的key和安全密钥
注意:导入密钥要在接口上面,纯顺序要求