美文网首页
flask笔记(十一):设置响应信息

flask笔记(十一):设置响应信息

作者: warmsirius | 来源:发表于2019-08-29 06:29 被阅读0次

    自定义响应信息

    1. 返回元组方式

    使用元组,返回自定义的响应信息

    
    @app.route('/index')
    def index():
        # 1. 使用元组,返回自定义的响应信息
        #             响应体   状态码  响应头
        # return "index page", 400, [('itcast', 'python'), ("city", "shenzhen")]
        # return "index page", 400, {'itcast':'python', "city":"shenzhen"}
        # 状态码可以自定义
        # return "index page", 666, {'itcast':'python', "city":"shenzhen"}
        # return "index page", "666 itcast status", {'itcast':'python', "city":"shenzhen"}
    
        # 2. 使用make_response 来构造响应信息
        resp = make_response('index page 2')
        resp.status = "999 itcast" # 设置状态码
        resp.headers['city'] = 'sz' # 设置响应头
        return resp
    

    相关文章

      网友评论

          本文标题:flask笔记(十一):设置响应信息

          本文链接:https://www.haomeiwen.com/subject/nehbectx.html