我也遇到過,其中可視化圖表不會顯示因這個錯誤定義:未捕獲的ReferenceError:烏髮不使用谷歌可視化API
未捕獲的ReferenceError:烏髮沒有定義
這是鏈接js所在的位置。非常感謝!
我也遇到過,其中可視化圖表不會顯示因這個錯誤定義:未捕獲的ReferenceError:烏髮不使用谷歌可視化API
未捕獲的ReferenceError:烏髮沒有定義
這是鏈接js所在的位置。非常感謝!
確保您的網頁呼叫jsapi
和google.load()
一次。 Qouted以下細節從Google Developer's Site
You may be using the Google Loader incorrectly.
Only load jsapi once. No matter how many charts you have on your web page, you should have one and only one call like this:
<script type="text/javascript"
src="https://www.google.com/jsapi"></script> // Do this ONCE.
Ideally, call
google.load
only once, with all the packages you'll need for your web page.
執行多個包的負載像下面,
<script>
google.load("visualization", "1", {packages: ["corechart", "timeline"]});
</script>
謝謝鮑勃。這導致我在我的模板上搜索多個聲明。這工作! –