플라스크/Ajax HTTP 연결을 유지하는 방법? jQuery Ajax 전화가 왔는데요, 다음과 같습니다. $("#tags").keyup(function(event) { $.ajax({url: "/terms", type: "POST", contentType: "application/json", data: JSON.stringify({"prefix": $("#tags").val() }), dataType: "json", success: function(response) { display_terms(response.terms); }, }); 플라스크 방법은 다음과 같습니다. @app.route("/terms", methods=["POST"]) def terms_by_prefix(): req = flask.r..