2017-08-15 53 views
0

如何返回一個json以及下面的燒瓶中的html模板?顯示JSON以及燒瓶中的html模板

@app.route('/test') 
def test(): 
    a = { 
    "test1": flag, 
    "test2": flag 
} 
    return ''' 
     <body> 
     ... 
     </body> 
     ''' 
+1

你不能。你只能返回其中一個。 JSON的HTML。 – stamaimer

+1

您如何期望得到的HTTP響應看起來像? –

+1

或者使用'render_template'並傳入JSON作爲參數,或者如果我正確理解了你的內容,則將其插入'script'標記中。 –

回答

0
@app.route('/test') 
def test(): 
    a = { 
    "test1": flag, 
    "test2": flag 
} 
    b = jsonify(a) 
    render_template("index.html",**locals()) 

在HTML文件中,你可以調用A,B等。

{{B}}

{{一}}

+0

謝謝,這是有效的。 – Zener