私のコード:
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['FileName', 'Frequency'],
{% for l in list1 %}
[{{l.file_name}},{{l.frequency_count}}],
{% endfor %}
]);
var options = {
title: 'Search Performance',
hAxis: {title: 'FileName', titleTextStyle: {color: 'red'}}
};
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="chart_div" style="width: 900px; height: 500px;"></div>
</body>
</html>
サーバーでアプリ(Djangoで作成)を実行すると、このグラフが表示されません。なぜですか?このページは私のviews.pyファイルからの「results.html」です。ここで、「list1」には、テーブルに格納されているデータ、つまり「file_name」と「frequency_count」が含まれています。なぜこうなった?
Django、google-charts、JavaScriptは初めてです。