美文网首页
百度地图引用时 报出A Parser-blocking, cro

百度地图引用时 报出A Parser-blocking, cro

作者: 兔子不打地鼠打代码 | 来源:发表于2019-09-30 16:03 被阅读0次

    页面引入百度地图api时

    chrome控制台报出问题
    A Parser-blocking, cross site (i.e. different eTLD+1) script, http://api.map.baidu.com/getscript?v=2.0&ak=Kpjp7jddqVUhWK5VkrfNt3YNezY88NtR&services=&t=20170517145936, is invoked via document.write. The network request for this script MAY be blocked by the browser in this or a future page load due to poor network connectivity. If blocked in this page load, it will be confirmed in a subsequent console message.See https://www.chromestatus.com/feature/5718547946799104 for more details.
    (anonymous) @ api:1

    查了一些资料,大概意思是说 :页面渲染完成后使用了document.write()
    这是不被允许的,
    根据上面的提示,把api引用url改成了

    http://api.map.baidu.com/getscript?v=2.0&ak=Kpjp7jddqVUhWK5VkrfNt3YNezY88NtR&services=&t=20170517145936
    1
    错误便消失了
    ————————————————
    版权声明:本文为CSDN博主「DegoLee」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/b809220024/article/details/72565978

    相关文章

      网友评论

          本文标题:百度地图引用时 报出A Parser-blocking, cro

          本文链接:https://www.haomeiwen.com/subject/wbqhpctx.html