从 Django 模型获取数据到 Google 个图表

Getting data from Django models to Google Charts

我正在尝试显示商店中最畅销商品的图表。所以我需要从数据库中获取信息并输入 html。图表似乎无法加载。当我尝试静态数据时(Google 中的示例),它工作正常。但是,我似乎无法使用动态数据来做到这一点。我将数组转换为 json 并在 html 中执行 |safe 进行转义。然而它仍然没有出现。如果有人有关于如何修复它的提示,请帮助!

下面是我的 views.py,我在其中调用包含图表脚本的 html 文件。

def charts(request):
    data_arr = []
    for item in Item.objects.all():
        data_arr.append([item.ItemName, item.quantity_sold])
    return render(request,'coffeeapp/charts.html',{'item':json.dumps(data_arr)})

这是我在 charts.html 文件中的代码

<script src="https://www.gstatic.com/charts/loader.js"></script>
    <script>
        google.charts.load('current', { packages: ['corechart'] });
        google.charts.setOnLoadCallback(drawChart);

        function drawChart() {
            // Define the chart to be drawn.
            var data = google.visualization.arrayToDataTable(
                ['Item', 'Quantity Sold'],
                [{{item|safe}}]
            );
            
            // Instantiate and draw the chart.
            var chart = new google.visualization.PieChart(document.getElementById('myPieChart'));
            chart.draw(data, null);
        }
    </script>

    <!--Div that will hold the pie chart-->
    <div id="myPieChart"/>

编辑 1:{{item|safe}}

中的内容

我已经打印出 views.py 中的项目,结果如下:

[["Espresso", 0], ["Cappuccino", 2], ["Black Coffee", 0], ["Cafe Latte", 0], ["Mocha", 0], ["Iced Americano", 0]....

在 browser/html 中,我在 function drawChart() 下添加了一个 alert({{item|safe}}) 作为第一行,它准确地显示了我所看到的项目。 部分结果如下

Espresso,0,Cappuccino,2,Black Coffee,0,Cafe Latte,0,Mocha,0,Iced Americano,0,Iced Caramel Macchiato,0,Cold Brew,0....

编辑 2 - 解决方案

在 Marco 的回答的帮助下,我解决了这个问题。 Marco 有修复标签的答案,但数据行是静态的,意味着手动输入,而我想从数据库中获取它。 因此,我修改了我的观点。

def charts(request):
    return render(request,'coffeeapp/charts.html',{'item':Item.objects.all()})

我的 html 是:

<script src="https://www.gstatic.com/charts/loader.js"></script>
    <script>
        google.charts.load('current', { packages: ['corechart'] });
        google.charts.setOnLoadCallback(drawChart);

        function drawChart() {
            // Define the chart to be drawn.
            
        var data = google.visualization.arrayToDataTable([
            [{ label: 'Item', type: 'string' },
            { label: 'Quantity Sold', type: 'number' }],
            {% for i in item %}
                ['{{ i.ItemName }}', {{ i.quantity_sold }}],
            {% endfor %}
        ]);
        var options = {
            'title': 'MOST ORDERED DRINKS',
            'width': 700,
            'height': 700
        };
        // Instantiate and draw the chart.
        var chart = new google.visualization.PieChart(document.getElementById('myPieChart'));
        chart.draw(data, options);
        }

    </script>

我不确定它是如何工作的,但它没有 safe 关键字。

仔细检查您的图表设置 - 您似乎需要更多设置来创建饼图标签。

这是工作配置:

  // Define the chart to be drawn.
  // Data settings = modified for generate the Pie Chart: 
  var data = google.visualization.arrayToDataTable([
    [{label: 'Item', type: 'string'}, 
     {label: 'Quantity Sold', type: 'number'}],
    ['Espresso', 0],
    ['Cappuccino', 2],
    ['Black Coffee', 0],
    ['Cafe Latte', 0],
    ['Mocha', 0],
    ['Iced Americano', 0],
    ['Iced Caramel Macchiato', 0],
    ['Cold Brew', 0]
  ]);

根据您在问题中提供的信息,我修改了代码并看到了生成的图表。

N.B: you have values with 0, so, if all values are zero, no chart will be generated, in your sample data, only 1 coffe has a value greater than zero:

    ['Cappuccino', 2], // This is the value that will show in the chart.

这是working jsfiddle

google.charts.load('current', {
  packages: ['corechart']
});
google.charts.setOnLoadCallback(drawChart);

function drawChart() {
  // Define the chart to be drawn.
  // Data settings = modified for generate the Pie Chart: 
  var data = google.visualization.arrayToDataTable([
    [{
        label: 'Item',
        type: 'string'
      },
      {
        label: 'Quantity Sold',
        type: 'number'
      }
    ],
    ['Espresso', 0],
    ['Cappuccino', 2], // This is the value that will show in the chart.
    ['Black Coffee', 0],
    ['Cafe Latte', 0],
    ['Mocha', 0],
    ['Iced Americano', 0],
    ['Iced Caramel Macchiato', 0],
    ['Cold Brew', 0]
  ]);

  // Instantiate and draw the chart.
  var chart = new google.visualization.PieChart(document.getElementById('myPieChart'));
  chart.draw(data, null);
}
<script src="https://www.gstatic.com/charts/loader.js"></script>
<div id="myPieChart" />

在views.py

def send_data(request):
    # get data ...
    # convert to dual items in tuple, dictionary, list & etc...
    return render(request, 'template_name', context={'data':data})

在javascript文件中

const draw_chart = (data) => {
    // draw chart....
}

在模板 html 文件中

<script>
    draw_chart({{ data }})
</script>