
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
2분54초 부분 console이 나타나지않습니다
강의를 돌려 보아도 어떤 부분이 문제인지 확인이 되지않습니다

작성한 코드 및 에러 메세지
app
@app.route("/mars", methods=["GET"])
def web_mars_get():
order_list = list(db.mars.find({}, {'_id':False}))
return jsonify({'orders':order_list})
</>
index
$(document).ready(function () {
show_order();
});
function show_order() {
$.ajax({
type: 'GET',
url: '/mars',
data: {},
success: function (response) {
console.log(response)
}
});
}
