用bottle.py读取POST主体

时间:2013-02-20 20:03:55

标签: python post python-2.7 bottle

我无法使用bottle.py阅读POST请求。

发送的请求在其正文中有一些文本。您可以在第29行看到它是如何制作的:https://github.com/kinetica/tries-on.js/blob/master/lib/game.js

您还可以在第4行https://github.com/kinetica/tries-on.js/blob/master/masterClient.js上看到基于node的客户端的阅读方式。

但是,我无法在基于bottle.py的客户端上模仿此行为。 docs表示我可以使用类似文件的对象读取原始主体,但我无法在request.body上使用for循环获取数据,也无法使用request.body readlines方法。

我正在使用@route('/', method='POST')修饰的函数中处理请求,并且请求正确到达。

提前致谢。


编辑:

完整的脚本是:

from bottle import route, run, request

@route('/', method='POST')
def index():
    for l in request.body:
        print l
    print request.body.readlines()

run(host='localhost', port=8080, debug=True)

2 个答案:

答案 0 :(得分:16)

您是否尝试过简单postdata = request.body.read()

以下示例显示使用request.body.read()

以原始格式阅读发布的数据

它还会打印到日志文件(而不是客户端)身体的原始内容。

为了显示对表单属性的访问,我添加了“name”和“surname”返回给客户端。

为了测试,我在命令行中使用了curl客户端:

$ curl -X POST -F name=jan -F surname=vlcinsky http://localhost:8080

适用于我的代码:

from bottle import run, request, post

@post('/')
def index():
    postdata = request.body.read()
    print postdata #this goes to log file only, not to client
    name = request.forms.get("name")
    surname = request.forms.get("surname")
    return "Hi {name} {surname}".format(name=name, surname=surname)

run(host='localhost', port=8080, debug=True)

答案 1 :(得分:0)

用于处理POST数据的简单脚本。 POST数据被写入终端,并返回给客户端:

from bottle import get, post, run, request
import sys

@get('/api')
def hello():
    return "This is api page for processing POSTed messages"

@post('/api')
def api():
    print(request.body.getvalue().decode('utf-8'), file=sys.stdout)
    return request.body

run(host='localhost', port=8080, debug=True)

用于将json数据发布到上述脚本的脚本:

import requests
payload = "{\"name\":\"John\",\"age\":30,\"cars\":[ \"Ford\", \"BMW\",\"Fiat\"]}"
url = "localhost:8080/api"
headers = {
  'content-type': "application/json",
  'cache-control': "no-cache"
  }
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)