2017-09-07 196 views
0

目前我正在使用Flask和Jquery,並在我的控制檯中獲取500內部服務器錯誤響應。當我使用Ajax發佈到flask上的url時,它不應該能夠被接收嗎?我不明白爲什麼我得到這個錯誤。如何使用Jquery發送GET請求?

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) 

Error Console

+1

你得到的錯誤是什麼?你應該能夠在你運行燒瓶服務器的終端上看到這個 – maor10

回答

0

500是一個服務器錯誤。僅在服務器端執行請求時出現問題。

+0

好吧,在postman上,我做同樣的查詢,這很好。 – arsenalist

+0

調試你的服務器腳本來獲得答案 –

相關問題