jquery-1.10.2.js:8706 POST http://127.0.0.1:5000/%7B%7B%20url_for('app.getData')%20%7D%7D 404(未找到)

时间:2016-07-19 18:25:41

标签: javascript jquery python json ajax

我希望json从js到python脚本作为json而不是字符串。 当我写下以下内容时,我在chrome浏览器控制台中收到上述错误: javascript代码:

data.push({
"start":0,
"end":10
});
console.log(JSON.stringify(data));

 $.ajax({
type : "POST",
url : "{{ url_for('app.getData') }}",
data: JSON.stringify(data, null, '\t'),
contentType: 'application/json;charset=UTF-8',
success: function(result) {
    console.log(result);
}
});

python代码:

@app.route('/getData', methods=["GET", "POST"])def getData():
if request.method == "POST":
    print(request.json['start'])
return request.json['start']

0 个答案:

没有答案