1. 程式人生 > >web 開發-教程aiohttp.web

web 開發-教程aiohttp.web

廖雪峰老師的web開發教程中:

from aiohttp import web

def index(request):
    return web.Response(body=b'<h1>Awesome!!!</h1>')

開啟對應的網頁總是直接彈出來下載一個檔案,而不能直接在網頁上展示欄位Awesome!!!,後來在index函式中的body上加上以下content_type即可。

def index(request):
    return web.Response(body=b'<h1>Awesome!!!</h1>',content_type='text/html')