0

我正在使用 Python 瓶、html/css 和 Javascript 来开发网站。现在在 Javascript 部分,我想使用 Jquery 将列表数据发送到后端 Python:

$.ajax({
            type: "POST",
            url: '/deleteauthor',
            data: keys,
            success: function() {
            for (var i=0, n=checkboxes.length; i<n; ++i)
                if (checkboxes[i].checked==true) {
                    var id = "#" + checkboxes[i].value;
                    $(id).hide();
                }
            }
        });

在 Python 瓶端,我如何接收数据?

4

1 回答 1

0

就像是:

from bottle import route, run, request
@route('/deleteauthor', method='POST')
def index():
    request.body.seek(0)
    data = request.body.read()
    #do something with data

run(host='localhost', port=8080, debug=True)
于 2013-09-04T18:19:37.987 回答