[GET 요청 API코드]
@app.route('/test', methods=['GET'])
def test_get():
title_receive = request.args.get('title_give')
print(title_receive)
return jsonify({'result': 'success', 'msg': '이 요청은 GET!'})
[GET 요청 Ajax코드]
$.ajax({
type: "GET",
url: "/test?title_give=봄날은간다",
data: {},
success: function(response){
console.log(response)
}
})
[POST 요청 API코드]
@app.route('/test', methods=['POST'])
def test_post():
title_receive = request.form['title_give']
print(title_receive)
return jsonify({'result': 'success', 'msg': '이 요청은 POST!'})
[POST 요청 Ajax코드]
$.ajax({
type: "POST",
url: "/test",
data: {title_give: '봄날은간다'},
success: function(response){
console.log(response)
}
})
app.py 창
👉app.py 파일에 [GET 요청 API코드] 넣고 request, jsonify 추가하기▼
👉콘솔창에 들어가서 [GET 요청 Ajax코드]를 붙어넣고 엔터
👉app.py창에 [POST 요청 API코드] 넣기
👉콘솔창에 들어가서 [POST 요청 Ajax코드]를 붙어넣고 엔터