javascript - google.setOnLoadCallback does not workdoes not wait until anything is loaded - Stack Overflow

That's pretty much it, the call seems to do absolutely nothing.If I debug the page in Chrome, put

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
Add a ment  | 

1 Answer 1

Reset to default 12

google.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 });

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743682591a4489624.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信