
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해
어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
방명록하고 있는데 콘솔창에서는 화성땅 입력값이 떠서요 ㅠㅠ db에서는 fan이 만들어졌거든요;;
html-> function show_comment() {
fetch('/guestbook').then((res) => res.json()).then((data) => {
let rows = data['result']
console.log(rows)
})
}
app.py->@app.route("/guestbook", methods=["GET"])
def guestbook_get():
all_comments = list(db.users.find({},{'_id':False}))
return jsonify({'result': all_comments})
위와 같이 고쳤습니다
