web-dev-qa-db-ja.com

ボトルにHTTPステータスコードを設定しますか?

応答のHTTPステータスコードをBottleに設定するにはどうすればよいですか?

from bottle import app, run, route, Response

@route('/')
def f():
    Response.status = 300 # also tried `Response.status_code = 300`
    return dict(hello='world')

'''StripPathMiddleware defined:
   http://bottlepy.org/docs/dev/recipes.html#ignore-trailing-slashes
'''

run(Host='localhost', app=StripPathMiddleware(app()))

ご覧のとおり、出力は私が設定したHTTPステータスコードを返しません。

$ curl localhost:8080 -i
HTTP/1.0 200 OK
Date: Sun, 19 May 2013 18:28:12 GMT
Server: WSGIServer/0.1 Python/2.7.4
Content-Length: 18
Content-Type: application/json

{"hello": "world"}
22
Foo Stack

response を使用する必要があると思います

from bottle import response; response.status = 300

37
dm03514

ボトルの組み込み応答タイプは、ステータスコードを適切に処理します。次のようなことを考えてください。

return bottle.HTTPResponse(status=300, body=theBody)

のように:

import json
from bottle import HTTPResponse

@route('/')
def f():
    theBody = json.dumps({'hello': 'world'}) # you seem to want a JSON response
    return bottle.HTTPResponse(status=300, body=theBody)
19
ron rothman

ステータスコード(200,302,401)を表示するために、raiseを使用してHTTPResponseでより多くの電力を取得できます。

あなたが単にこのようにすることができるように:

import json
from bottle import HTTPResponse

response={}
headers = {'Content-type': 'application/json'}
response['status'] ="Success"
response['message']="Hello World."
result = json.dumps(response,headers)
raise HTTPResponse(result,status=200,headers=headers)
0
Abdullah Hassan