目前我正在使用Flask和Jquery并在我的控制台中获得500内部服务器错误响应。当我用Ajax发布到烧瓶上的url时,它应该不能被接收吗?我不明白为什么我会收到这个错误。
Jquery的
$('.movie').click(function(){
console.log(this);
$(this).toggleClass('green blue').promise().done(function(){
if ($(this).html() == "Add Movie"){
$(this).html("Added");
}
});
id = $(this).val();
//get information from API
$.ajax({
url: "/profile",
dataType: 'json',
async: true,
data: {id: id},
success: function(data) {
}
});
的Python /瓶
@app.route("/profile", methods = ["GET"])
def profile(id):
print("mydata is: ", request.args['id'])
if request.args.get:
print("this API is reached")
id = request.args.get['id']
url_movie = 'https://api.themoviedb.org/3/movie/{}?api_key=78cb6b67a99ce26e6d6619c617d9c907&language=en-US'.format(id)
r = requests.get(url_movie)
code = r.json();
return jsonify(code)
答案 0 :(得分:0)
500是服务器错误。服务器端的请求执行有问题。