서버통신1 [웹개발 종합반 4주차] 4주차 숙제 🔖팬명록 완성 🔎두 가지 기능을 수행 응원 남기기(POST): 정보 입력 후 '응원 남기기' 버튼클릭 시 주문목록에 추가 응원 보기(GET): 페이지 로딩 후 하단 응원 목록이 자동으로 보이기 🔎app.py @app.route("/homework", methods=["POST"]) def homework_post(): name_receive = request.form['name_give'] comment_receive = request.form['comment_give'] doc = { 'name':name_receive, 'comment':comment_receive } db.fanbook.insert_one(doc) return jsonify({'msg':'기록 완료!'}) @app.route("/h.. 2022. 10. 25. 이전 1 다음