我想知道,我如何通过表单传递用户数据到本地存储,并在Flask中访问它,以使用Flask显示数据?
我确信我已经理解了这个问题。以下是我根据自己的理解给出的答案。要从客户端本地存储中保存和读取数据,需要使用浏览器的JavaScript。
document.getElementById('clickme').onclick = function clicked() {
// use ajax or equivalent to send the data from the browser to the server
}
在服务器端读取数据:
@app.route("/route1")
def route1():
data = request.get_json()['data']
# do anything here
return jsonify({'status':'success'})