2016-12-27 38 views
2

我想編寫代碼來處理用戶發佈的數據,並返回一個字符串類型的值並顯示在頁面上,這裏是我的演示代碼瓶,如何響應一個字符串到HTML?

def model(...): 
    ... 
    strs = process(...) 
    return render_template('page.html' ...) 

我怎麼能這樣做?

+0

在AJAX?如果是這樣,只需發回一個json結構... – reptilicus

回答

2

你想通過strs裏面的模板page.html?你應該看看燒瓶的official tutorial以掌握基本知識。

def model(...): 
    ... 
    strs = process(...) 
    return render_template('page.html', string_variable=strs) 

模板page.html然後可以參考strsstring_variable

<p>This is the processed string: {{ string_variable }} </p>