如何在Python(Flask Framework)中获取JSON对象。以下是我的代码段`
var hotel=$( "#listHotel option:selected" ).val();
if(hotel!="select")
{
$.ajax({
url: '/getHotels',
data: {'hotel':hotel},
type: 'POST',
success: function(response){
alert(response);
var r= JSON.parse(response);
var rating =r.message
$("#rate").html("Ratings : "+rating);
$("#rate").show('slow');
console.log(response);
},
error: function(error){
alert(response);
console.log(error);
}
});
}`
如何hotel在我的Python脚本中获取JSON值Flask Framework
from flask import Flask, render_template, json, request
app = Flask(__name__)
@app.route('/')
def main():
return render_template('index.html')
@app.route('/getHotels',methods=['POST','GET'])
def getHotels():
try:
_hotel=request.POST['hotel']
print _hotel
这是我在Python中的代码
在您的JavaScript中,将数据转换为JSON并将设置contentType为"application/json":
data: JSON.stringify({'hotel':hotel}),
contentType : "application/json",
在flask函数中,使用来获取JSON request.json:
@app.route('/getHotels')
def getHotels():
hotel = request.json['hotel']
.....
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。