一段时间以来,我一直在 Flask 中反对这种方法,虽然我现在似乎正在取得进展,但我刚刚发生了一些让我困惑不已的事情。这是我正在调用的方法:
@app.route('/facedata/<slug>', methods=["POST"])
def facedata(slug):
if request.method == "POST":
try:
post = Post.objects.get_or_404(slug=slug)
data = [float(item) for item in request.form.getlist('emotions[]')]
post.face_data.append(data)
post.save()
except:
traceback.print_exc(file=sys.stdout)
很长一段时间以来,我在这里遇到错误,然后会在 heroku 日志中被捕获。目前没有错误,说明它没有到达except循环,但更糟糕的是,仍然有500个错误。具体来说,我得到的 500 个错误是:
heroku[router]: at=info method=POST path=/facedata/StripedVuitton host=cryptic-mountain-6390.herokuapp.com fwd="18.111.90.180" dyno=web.2 connect=4ms service=39ms status=500 bytes=291
我POST
在这种方法中通过 AJAX 发送这些请求:
var slug = document.getElementById("hidden-slug").getAttribute("value");
data = {emotions: lRes};
$.ajax({
type: "POST",
data: data,
url: document.location.origin + "/facedata/" + slug,
success: function(){
console.log("Success!");
}
});
老实说,我只是不知道如何继续调试这个问题。毫无例外地获得追溯对我来说没有多大意义,但也许我只是天真。
如果相关的话,我在 Heroku 上的 MongoHQ 上使用 mongoengine。