我正在 iOS 模拟器上测试这个应用程序
每当我运行此代码时:
google.load("visualization", "1", {packages:["corechart"]});
我的 phonegap 应用程序崩溃到完全白屏。我有一个页面,其中有一些随机内容和一个按钮,它被分配了一个.click()
jQuery
侦听器以开始加载谷歌图表 api。每当我单击该按钮时,一切都会消失,我只剩下一个空白屏幕。
这是代码:
$( '#chartsThirdStep' ).live( 'pageinit',function(event){
$("#chartThirdStepGoButton").click(function(event){
parseChartInfo();
});
});
function parseChartInfo() {
console.log("parseChartInfo()");
google.load("visualization", "1", {packages:["corechart"]});
// app completely crashes here - all jquery mobile stuff dissapears
// and i'm left with a blank screen on the simulator.
//google.setOnLoadCallback(drawChart);
}
我在用着:
- Xcode v4.2
- 科尔多瓦 v1.9.0
- jQuery手机版 v1.1.1
- jQuery v1.7.1
- https://www.google.com/jsapi
- Mac OS X v10.6.8
- iOS 模拟器 v5.0 (272)