Sanic 類的post()方法的API介面。
post() 方法/函式
定義
post(uri, host=None, strict_slashes=None, stream=False, version=None, name=None)
新增支援 POST HTTP 方法的API URL
引數
– uri:標記為 GET 方法的URL。
– host:服務允許的host IP 或 FQDN
– strict_slashes:嚴格匹配末尾的斜槓/ ,預設為False,即最後的/可有可無。
– version:API版本
– name:為url_for()方法定義的路由名稱。
例子
from sanic import Sanic
from sanic.response import text
app = Sanic(__name__)
@app.post('/post')
async def handler(request):
return text('POST request ')
我的公眾號:猿人學 Python 上會分享更多心得體會,敬請關注。
***版權申明:若沒有特殊說明,文章皆是猿人學 yuanrenxue.com 原創,沒有猿人學授權,請勿以任何形式轉載。***