react项目引入百度地图api出现警告:A parser-blocking, cross site (i.e. different eTLD+1) script, http://api.map.ba

问题描述:

首先引入脚本,在index.html中引入以下script,密钥可去百度地图开放平台官网申请。

本人引入的文件是:public/index.html

引入之后,地图加载不会出错,功能也完整。但是浏览器会报出警告:

A parser-blocking, cross site (i.e. different eTLD+1) script, http://api.map.baidu.com/getscript?type=webgl&v=1.0&ak=您的密钥&services=&t=, 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.

翻译:

通过document.write调用一个解析器阻塞,跨站点(即不同的eTLD+1)脚本,http://api.map.baidu.com/getscript?type=webgl&v=1.0&ak=“&services=&t=”。由于网络连接不良,对该脚本的网络请求可能会在当前或将来的页面加载中被浏览器阻止。如果在此页面加载中被阻塞,将在随后的控制台消息中进行确认。
详见https://www.chromestatus.com/feature/5718547946799104。

原因分析:

翻译解释了为什么会报出这个警告,以下是其内容:

For users on slow connections such as 2G, the performance penalty from third-party scripts loaded via document.write() is often so severe as to delay display of main page content for tens of seconds. This feature will block the load of cross-origin, parser-blocking scripts inserted via document.write() in case of an HTTP cache miss for users on a 2G connection. The feature will only be applicable to such scripts in the main frame.

翻译:

对于使用慢速连接(如2G)的用户,通过document.write()加载的第三方脚本的性能损失通常非常严重,以至于导致主页内容的显示延迟数十秒。在2G连接上的用户HTTP缓存丢失的情况下,该特性将阻止通过document.write()插入的跨域解析器阻塞脚本的加载。该功能将仅适用于主框架中的此类脚本。

解决方案:

尝试方法一:(未解决)

https://api.map.baidu.com/api后面紧跟的api换成getscript

script原文:

 

修改之后的:

 

结果:

不报警告了,但是某些控件功能丧失,某些控件样式消失。

如图所示:

react项目引入百度地图api出现警告:A parser-blocking, cross site (i.e. different eTLD+1) script, http://api.map.ba_第1张图片

尝试方法二:(解决)

方法一既然可以解决警告,只是样式缺失,那么我是否可以通过link标签去引入样式?

于是我先将带有apiscript引入:

文件路径:public\index.html

 

然后去项目中通过 Ctrl + Shift + i 查看元素:

react项目引入百度地图api出现警告:A parser-blocking, cross site (i.e. different eTLD+1) script, http://api.map.ba_第2张图片

将这俩个标签复制下来,直接引入到index.html文件中:

 
 
 
 

结果:

警告问题完全解决,并且样式也没有任何问题。

你可能感兴趣的:(react.js,前端,前端框架)