from aiohttp import web
import aiohttp
from settings import config
import asyncio
import psycopg2 as p
import json
import aiopg
import aiohttp
import asyncio
async def fetch(client):
async with client.get('https://jsonplaceholder.typicode.com/todos/1') as resp:
assert resp.status == 200
return await resp.json()
async def index():
async with aiohttp.ClientSession() as client:
html = await fetch(client)
return web.Response(html)
loop = asyncio.get_event_loop()
loop.run_until_complete(index())
这是我的views.py
from aiohttp import web
from routes import setup_routes
from settings import config
app = web.Application()
setup_routes(app)
web.run_app(app,port=9090)
main.py
from views import index
def setup_routes(app):
app.router.add_get('/', index)
这是我的路线。py
但是,当我尝试触发localhost:9090的URL时,我仅收到内部服务器500错误 说
TypeError: index() takes 0 positional arguments but 1 was given
但是我可以在终端中打印json,但无法在浏览器中触发与Web响应相同的操作,我不知道在这种情况下怎么了
答案 0 :(得分:4)
您的index
协程是handler,因此它必须接受一个位置参数,该位置参数将接收一个Request
实例。例如:
async def index(request):
async with aiohttp.ClientSession() as client:
html = await fetch(client)
return web.Response(html)
loop.run_until_complete(index())
顶层的views.py
是不必要的,并且在正确定义index()
后将无法使用。
答案 1 :(得分:1)
您的index()
异步函数应接受request
参数以与Web处理程序兼容。