我有object main.py
from __future__ import with_statement
from flask import Flask,request,jsonify,send_file,render_template
import json
# from flask_cors import CORS
app = Flask(__name__, static_url_path='/vendor')
# CORS(app)
@app.route('/')
def home():
return render_template('index.html',id_user="id1")
@app.route('/receive_word',methods=['POST'])
def receive_word():
print(request.form)
data = request.form['javascript_data']
d = json.loads(data)
print(d['key1'])
print(d['key2'])
return d
我有microphone.js
$.post("/receive_word", {
javascript_data: JSON.stringify({ "key1":1, "key2":this.currentTranscript })
});
console.log({{ d }});
如何将我的main.py中的d传递给main.js?代码无法从main.py捕获%d变量谢谢
发布于 2018-08-30 14:14:19
您似乎使用JQuery向您的端点发出呼叫。您应该使用$.post
回调参数:
$.post("/receive_word", {
javascript_data: JSON.stringify({ "key1":1, "key2":this.currentTranscript })
},
// Here is the callback
function(d, status){
// process d
});
发布于 2018-08-30 14:07:59
在Flask视图中使用jsonify
返回json数据,假设d
是一个有效的Python dict:
@app.route('/receive_word',methods=['POST'])
def receive_word():
data = request.form['javascript_data']
d = json.loads(data)
return jsonify(d)
https://stackoverflow.com/questions/52098444
复制相似问题