2012-06-18 48 views
2

如何在融合表中使用queryText獲取行數結果?我將在下面發佈我的代碼...如何使用fusionText中的queryText獲取結果的行數?

function drawTable() 
{ 
    var queryText = encodeURIComponent(consulta); 
    var gvizQuery = new google.visualization.Query('http://www.google.com/fusiontables/gvizdata?tq=' + queryText); 
    gvizQuery.send(function (response) 
    { 
     var table = new google.visualization.Table(document.getElementById('visualization')); 
     table.draw(response.getDataTable(), { showRowNumber: true }); 
    }); 
} 

回答

0
numRows = response.getDataTable().getNumberOfRows(); 
相關問題