在此代码下方显示网站代码但不显示。
<div id="google-reviews"></div>
这是我发布谷歌评论的div。
<script>
jQuery(document).ready(function( $ ) {
$("#google-reviews").googlePlaces({
placeId: 'myplaceid' //Find placeID @: https://developers.google.com/places/place-id
, render: ['reviews']
, min_rating: 4
, max_rows:4
});
});
</script>
这是调查审核的脚本。
答案 0 :(得分:0)
如果您提供的代码就是此功能的全部内容,则可能已过时且缺少关键依赖项。
为了让你的javascript正确执行,你需要注册一个免费的API密钥,然后在你的javascript调用中插入密钥。
如果使用Google Maps Library API JS,请务必在执行jQuery函数之前加载它。 <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=places"></script>
有关详细信息,请参阅https://developers.google.com/maps/documentation/javascript/places。
如果使用https://maps.googleapis.com/maps/api/place/details/json?placeid=ChIJN1t_tDeuEmsRUsoyG83frY4&key=YOUR_API_KEY
等直接网址方式,请参阅https://developers.google.com/places/web-service/details
然后,您需要设置javascript AJAX处理程序来解析json结果并填充google-reviews div。