我試圖讓燒瓶演員瓶形式值爲int
@app.route('/getpersonbyid', methods = ['POST'])
def getPersonById():
personId = (int)(request.form['personId'])
print personId
後的數據,我在RESTClient實現通過POST發送數據「PERSONID」。但我沒有得到結果;相反,我得到一個400錯誤的請求錯誤。
我的代碼中有錯誤嗎?如果是這樣,當請求數據通過POST時,如何獲得特定數據。
有沒有必要圍繞'int'類型放置括號; python不會做轉換。 :-) –
由於「沒有得到結果」,你的意思是你得到一個錯誤? –
我收到一個錯誤錯誤的請求 –