当前位置: 首页>>代码示例>>Python>>正文


Python HTTPResponse.add_header方法代码示例

本文整理汇总了Python中bottle.HTTPResponse.add_header方法的典型用法代码示例。如果您正苦于以下问题:Python HTTPResponse.add_header方法的具体用法?Python HTTPResponse.add_header怎么用?Python HTTPResponse.add_header使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在bottle.HTTPResponse的用法示例。


在下文中一共展示了HTTPResponse.add_header方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: get_response_from_exception

# 需要导入模块: from bottle import HTTPResponse [as 别名]
# 或者: from bottle.HTTPResponse import add_header [as 别名]
def get_response_from_exception(excep, exception_mapping):
    status = exception_mapping.get(excep.__class__, None)
    if status is None:
        status = 500
    ret = HTTPResponse(status=status, body=str(excep))
    ret.add_header("Content-Type", "text/plain")
    return ret
开发者ID:19317362,项目名称:conan,代码行数:9,代码来源:return_handler.py

示例2: send_response

# 需要导入模块: from bottle import HTTPResponse [as 别名]
# 或者: from bottle.HTTPResponse import add_header [as 别名]
def send_response(code, message=None):
    r = HTTPResponse(status=code)
    r.add_header('Access-Control-Allow-Origin', '*')
    r.set_header('Content-Type', 'application/json')
    if message is None:
        r.set_header('Content-Type', 'text/plain')
    elif type(message) is str:
        e = {'error': message}
        r.body = json.dumps(e)
    elif type(message) is dict:
        r.body = json.dumps(message)
    else:
        r.body = message
    return r
开发者ID:nhurman,项目名称:Lorre,代码行数:16,代码来源:api.py

示例3: options_group

# 需要导入模块: from bottle import HTTPResponse [as 别名]
# 或者: from bottle.HTTPResponse import add_header [as 别名]
def options_group(gid):
    r = HTTPResponse(status=200)
    r.add_header('Access-Control-Allow-Origin', '*')
    r.add_header('Access-Control-Allow-Methods', 'GET, DELETE, PUT')
    return r
开发者ID:nhurman,项目名称:Lorre,代码行数:7,代码来源:api.py

示例4: post

# 需要导入模块: from bottle import HTTPResponse [as 别名]
# 或者: from bottle.HTTPResponse import add_header [as 别名]
 def post(self):
     m = self.insert(request.json)
     response = HTTPResponse(status=201, body=json.dumps(m.to_dict()))
     response.content_type = "application/json"
     response.add_header("Location", "{}/{}".format(self.base, m.id))
     return response
开发者ID:wwu-housing,项目名称:schedule,代码行数:8,代码来源:routes.py


注:本文中的bottle.HTTPResponse.add_header方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。