繁体   English   中英

aiohttp 中基于类的视图

[英]Class-based views in aiohttp

使用基于类的处理程序而不是aiohttp库中的函数的正确方法是什么? 我习惯于在Django中将处理程序编写为类,所以我想知道如何在aiohttp 中正确地做到这一点

我假设您想使用基于类的处理程序来应用继承来重用代码。

从技术上讲,aiohttp web-handler 是任何接受请求参数并返回响应实例的协程。

例如

class BaseView:
    def __init__(self, ...):
        ...

    async def __call__(self, request):
        return web.Response()

app.router.add_route('GET', '/', BaseView(...))

可以用作制作网络处理程序层次结构的基类。

甚至

class Handler:
    def __init__(self, db):
        self._db = db

    async def get_from_db(self, data):
        ...

    async def handle_a(self, request):
        data = yield from self.get_from_db(
            self.extract_from_request_a(request))
        return web.Response(self.format_data(data))

    async def handle_b(self, request):
        data = yield from self.get_from_db(
            self.extract_from_request_b(request))
        return web.Response(self.format_data(data))


handler = Handler(db)
app.router.add_route('GET', '/a', hadndler.handle_a)
app.router.add_route('GET', '/b', hadndler.handle_b)

你可以这样使用它:

from aiohttp import web
from datetime import datetime


class TokenView(web.View):

    async def get(self):
        token = datetime.now().strftime("%Y%m%d%H%M%S")
        room = self.request.match_info.get("room", None)
        return web.json_response({"room": room, "token": token, "result": "OK"})

    async def post(self):
        room = self.request.match_info.get("room", None)
        token = datetime.now().strftime("%Y%m%d%H%M%S")
        return web.json_response({"room": room, "token": token, "result": "OK"})


if __name__ == "__main__":

    app = web.Application()
    app.router.add_view("/token/{room}", TokenView)
    print(app.router.named_resources())
    web.run_app(app)

aiohttp 中基于类的视图的快速示例

from aiohttp import web

class Users(web.View):

    async def get(self):
        output = [
            {   
                'id': 1,
                'username': 'chuck_norris'
            },
        ]
        return web.json_response(output, status=200)

    async def post(self):
        data = await self.request.json()
        output = {
            'result': data
        }
        return web.json_response(output, status=201)

    async def delete(self):
        return web.json_response(status=204)


class Teams(web.View):

    async def get(self):
        output = [
            {   
                'id': 1,
                'team': 'team1'
            },
        ]
        return web.json_response(output, status=200)

    async def post(self):
        data = await self.request.json()
        output = {
            'result': data
        }
        return web.json_response(output, status=201)

    async def delete(self):
        return web.json_response(status=204)


app = web.Application()

app.router.add_view("/users", Users)
app.router.add_view("/teams", Teams)

web.run_app(app, port=8000)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM