2
我想編寫代碼來處理用戶發佈的數據,並返回一個字符串類型的值並顯示在頁面上,這裏是我的演示代碼瓶,如何響應一個字符串到HTML?
def model(...):
...
strs = process(...)
return render_template('page.html' ...)
我怎麼能這樣做?
我想編寫代碼來處理用戶發佈的數據,並返回一個字符串類型的值並顯示在頁面上,這裏是我的演示代碼瓶,如何響應一個字符串到HTML?
def model(...):
...
strs = process(...)
return render_template('page.html' ...)
我怎麼能這樣做?
你想通過strs
裏面的模板page.html
?你應該看看燒瓶的official tutorial以掌握基本知識。
def model(...):
...
strs = process(...)
return render_template('page.html', string_variable=strs)
模板page.html
然後可以參考strs
爲string_variable
:
<p>This is the processed string: {{ string_variable }} </p>
在AJAX?如果是這樣,只需發回一個json結構... – reptilicus