嘿伙计们,当我加载我的网页时,谷歌地图开始加载,但它没有完全加载。这是控制台打印出来的:
Resource interpreted as Image but transferred with MIME type text/html: "http://maps.googleapis.com/maps/gen_204?ev=api_viewport&cad=src:apiv3".
Resource interpreted as Image but transferred with MIME type text/html: "http://maps.googleapis.com/maps/gen_204?ev=api_ads&cad=src:apiv3,ads:0".
Resource interpreted as Image but transferred with MIME type text/html: "http://maps.googleapis.com/maps/gen_204?ev=api_marker&cad=src:apiv3,m:2,d:0,s:0".
我知道它与内容类型有关,但我不确定如何设置它。我将这两个元标记放在我的标题中,但没有运气。
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html"; charset=utf-8">
我也在尝试另一种方式,将它放在我的文件顶部:
<?php
// header('Content-Type: application/x-javascript; charset=UTF-8');
?>
但这也无济于事。
我正在使用 PHP 和 MYSQL。有人可以引导我朝着正确的方向前进。谢谢。