修复JSON数据的格式,以便在google chart api中使用实时图表

时间:2018-03-10 11:39:48

标签: javascript html flask charts google-api

我在我网站的页面上使用烧瓶和谷歌图表。我有一个页面显示数据库的最后一行,该数据库是json对象格式:

{"temperature": 11.0, "datetime": "12-12-12 23-23-23"}

在烧瓶中我正在制作这个getjson页面如下:

@app.route('/getjson')
def getjson():
    tempdata = getTemperatureData()
    return render_template('getjson.html', **locals())

这将传递给局部变量tempdata。在此之后,我使用简单的代码:

创建了一个html文件(getjson.html)
{{tempdata}}

当我加载网页并检查inspect元素选项卡时,我得到的这个看起来像pythonanywhere或者flask已经添加了所有这些html数据:

<html>
    #shadow-root (open)
    <head></head>
    <body>{"temperature": 11.0, "datetime": "12-12-12 23-23-23"}</body>
</html>

我的问题是我的谷歌图表图表不会加载,它似乎是在我的浏览器的网络预览标签中接收到这些数据,看起来完全修改了我希望它接收的内容(它应该是一个json对象)但它有所有这些添加的字符:

{&#34;temperature&#34;: 11.0, &#34;datetime&#34;: &#34;12-12-12 23-23-23&#34;}

我的Google图表应该能够实时更新的代码如下:

<!DOCTYPE html>
<html>

<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
    <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
</head>
<body>
  <div id="chart_div" style="width: 900px; height: 500px"></div>

   <script type="text/javascript">
    google.charts.load('current', {
  callback: function () {
    var data = new google.visualization.DataTable();
    data.addColumn('string', 'Date Time');
    data.addColumn('number', 'Temperature');
    var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
    var options = {
      title: 'Temperature Data',
      curveType: 'none',
      legend: { position: 'bottom' }
    };

    drawChart();
    setInterval(drawChart, 10000);

    function drawChart() {
      $.getJSON({
        url: 'removed from public view just in case',
        type: 'get'
      }).done(function (jsonData) {
        data.addRows([
          [jsonData.datetime, jsonData.temperature]
        ]);
        chart.draw(data, options);
      }).fail(function (jqXHR, textStatus, errorThrown) {
        console.log(textStatus, errorThrown);
      });
    }
  },
  packages: ['corechart']
});
    </script>
    </body>
</html>

有人建议将其更改如下,将接收的数据插入元素并返回它的值,但这不起作用。

 function decodeEntities(encodedString) {
        var textArea = document.createElement('textarea');
        textArea.innerHTML = encodedString;
        return textArea.value;
    }

    function drawChart() {
        $.getJSON({
            url: 'removed ...',
            type: 'get'
        }).done(function (jsonData) {
            jsonData = decodeEntities(jsonData);
            data.addRows([
            [jsonData.datetime, jsonData.temperature]
            ]);
            chart.draw(data, options);
            }).fail(function (jqXHR, textStatus, errorThrown) {
                console.log(textStatus, errorThrown);
            });
    }

真的在寻找这个问题的解决方案,谢谢。

1 个答案:

答案 0 :(得分:1)

您的烧瓶终点不应该返回

return render_template('getjson.html', **locals())

将返回html。而是做这样的事情:

from flask import jsonify
return jsonify(your_data)