【发布时间】:2015-11-11 14:55:19
【问题描述】:
我们正在使用 AJAX 来显示用户的统计信息 - 每月(当月和过去 12 个月)发送和接收的电子邮件数量。我正在使用谷歌图表。当我在没有 AJAX 的情况下执行此操作时,它可以工作,但使用 AJAX Google 图表不起作用 - 整个页面变为空白,并且控制台中没有异常。这是我的代码:
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
$(document).ready(function() {
var params = {
"email": "{{ statistics_user_email }}",
"today_email_statistics_query_job_json": JSON.stringify({{ today_email_statistics_query_job_json|safe }}),
"this_month_email_statistics_query_job_json": JSON.stringify({{ this_month_email_statistics_query_job_json|safe }}),
"last_13_months_monthly_email_statistics_query_job_json": JSON.stringify({{ last_13_months_monthly_email_statistics_query_job_json|safe }})
};
function try_ajax() {
$.ajax({
type: 'POST',
url: '/ajax/user/email_statistics',
data: params,
success: function(reply) {
if (reply.wait === true) {
// Try again after 4 seconds.
setTimeout(try_ajax, 4000);
} else if (reply.ready === true) {
function drawTitleSubtitle() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Month');
data.addColumn('number', 'Emails sent');
data.addColumn('number', 'Emails received');
var rows = [];
for (var i = 0; i < reply["last_13_months_monthly_email_statistics"].length; i++) {
var row = reply["last_13_months_monthly_email_statistics"][i];
rows.push([row["month"], row["sent"], row["received"]]);
}
data.addRows(rows);
var options = {
'title': 'How Many Vegan Cheeseburgers I Ate Last Night',
'width': 400,
'height': 300
};
var material = new google.charts.Bar(document.getElementById('last-13-month-chart-div'));
material.draw(data, options);
}
$("#today-emails-sent-span").html(reply["today_email_statistics"]["messages_sent"]);
$("#today-emails-received-span").html(reply["today_email_statistics"]["messages_received"]);
$("#this-month-emails-sent-span").html(reply["this_month_email_statistics"]["messages_sent"]);
$("#this-month-emails-received-span").html(reply["this_month_email_statistics"]["messages_received"]);
google.load('visualization', '1', {packages: ['corechart', 'bar']});
google.setOnLoadCallback(drawTitleSubtitle);
$("#please-wait-div").addClass("hidden");
$("#email-statistics-div").removeClass("hidden");
} else {
console.error("AJAX returned unexpected results!", reply);
}
}
});
}
try_ajax();
});
</script>
当我评论以下几行时,它可以在没有图表的情况下工作:
google.load('visualization', '1', {packages: ['corechart', 'bar']});
google.setOnLoadCallback(drawTitleSubtitle);
AJAX 曾返回此对象一次:
{"wait": true}
第二次:
{"ready": true, "last_13_months_monthly_email_statistics": [{"received": 23, "sent": 2, "month": "2015-10"}, {"received": 15, "sent": 4, "month": "2015-11"}], "this_month_email_statistics": {"messages_received": 15, "messages_sent": 4}, "today_email_statistics": {"messages_received": 0, "messages_sent": 1}}
我不包括 HTML,但页面上存在所有元素。一切正常,除了图表,它在我不使用 AJAX 之前工作。有什么问题?
顺便说一下,我只加载了本月和上个月的数据,这不是错误。将来我们可以显示过去的 12 个月。
我尝试在函数drawTitleSubtitle() 中使用console.log,但它似乎根本没有被调用。但是AJAX返回结果后(第二次调用),<html>里面没有<body>。
【问题讨论】:
-
也许谷歌不喜欢纯素芝士汉堡 :)
-
@T3H40 这是一个披萨(复制自google-developers.appspot.com/chart/interactive/docs/…),我改了... :-)
-
你去!问题已解决、修复并关闭。
标签: javascript jquery ajax charts google-visualization