admin管理员组文章数量:1342902
That's pretty much it, the call seems to do absolutely nothing.
If I debug the page in Chrome, put a breakpoint right after the call to
google.load('visualization', '1.0', { packages: ['corechart', 'bar', 'table'] });
and literally wait 5-10 seconds for the loading to finish, then proceed, it is fine. Otherwise, if I let 'setOnLoadCallback' try to do it's thing, it will throw
'Uncaught TypeError: Cannot read property 'DataTable' of undefined'
The error is thrown on:
var data = new google.visualization.DataTable();
Edit:
I should also note that in all examples I've found, when calling
google.setOnLoadCallback(drawChart);
All the examples are as above, without including the brackets '()' at the end of the function, i.e.
google.setOnLoadCallback(drawChart());
However, the only way it actually works for me, is WITH the brackets, yet there are no examples where people include the brackets.
That's pretty much it, the call seems to do absolutely nothing.
If I debug the page in Chrome, put a breakpoint right after the call to
google.load('visualization', '1.0', { packages: ['corechart', 'bar', 'table'] });
and literally wait 5-10 seconds for the loading to finish, then proceed, it is fine. Otherwise, if I let 'setOnLoadCallback' try to do it's thing, it will throw
'Uncaught TypeError: Cannot read property 'DataTable' of undefined'
The error is thrown on:
var data = new google.visualization.DataTable();
Edit:
I should also note that in all examples I've found, when calling
google.setOnLoadCallback(drawChart);
All the examples are as above, without including the brackets '()' at the end of the function, i.e.
google.setOnLoadCallback(drawChart());
However, the only way it actually works for me, is WITH the brackets, yet there are no examples where people include the brackets.
Share edited Jun 24, 2015 at 20:42 Justin asked Jun 24, 2015 at 20:16 JustinJustin 5531 gold badge7 silver badges19 bronze badges 1-
1
FYI : Those brackets are called paranthesis
( )
:) – davidkonrad Commented Jun 25, 2015 at 2:57
1 Answer
Reset to default 12google.setOnLoadCallback(drawChart())
(with paranthesis) should not work at all, so that sounds a little bit strange. setOnLoadCallback
expects the name of a function it can call, not the execution of a function.
setOnLoadCallback
is a general google feature. It is also triggered by google.load("jquery", "1.9.1")
etc. It could be the case that somewhere in your code another library is loaded by google.load()
and by that triggering your setOnLoadCallBack
prematurely.
So to be absolutely certain that your callback is actually triggered when the visualization library is loaded, and not by something else, you can set the callback directly on load()
instead of relying on setOnLoadCallback()
:
google.load('visualization', '1.0',
{ packages: ['corechart', 'bar', 'table'], callback: drawChart });
本文标签: javascriptgooglesetOnLoadCallback does not workdoes not wait until anything is loadedStack Overflow
版权声明:本文标题:javascript - google.setOnLoadCallback does not workdoes not wait until anything is loaded - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743682590a2521371.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论