python/flask/Jinja2 and Json

2019-03-15 17:56发布

"I am using Flask,Jinja2,higHighcharts"

Example (Python/Flask):

@app.route("/column/")
def column():
    data=[{"data": [49.9, 54.4], "name": "Tokyo"}, {"data": [42, 30.4], "name": "AC"}]
    return render_template('column.html', data=data)

my templates

$(document).ready(function() {
      chart1 = new Highcharts.Chart({
         chart: {
            renderTo: 'container',
            type: 'bar'
         },
         title: {
            text: 'Fruit Consumption'
         },
         xAxis: {
            categories: ['Apples', 'Bananas', 'Oranges']
         },
         yAxis: {
            title: {
               text: 'Fruit eaten'
            }
         },
         series:{{ data }}
      });
   });

i view highcharts (column.html)

series:[{&\#39;data': [4, 5, 9], &\#39;name&\#39;: &\#39;Jane&\#39;},{&\#39;data&\#39;: [8, 3, 4], &\#39;name&\#39;: &\#39;John&\#39;}]});

i want to correct Jinja2 wording,Ultimately the desired results.

series: [{
            name: 'Jane',
            data: [1, 0, 4]}, {
            name: 'John',
            data: [5, 7, 3]
         }]

1条回答
ゆ 、 Hurt°
2楼-- · 2019-03-15 18:36

Mark your data as safe with Markup:

Marks a string as being safe for inclusion in HTML/XML output without needing to be escaped.

Or change {{ data }} to {{ data|tojson|safe }}.

查看更多
登录 后发表回答