TypeError: __init__() got an unexpected keyword argument 'method'
来源:8-2 小程序会员登录和注册2
IT秃子
2019-11-15
from flask import Blueprint
route_api = Blueprint('api_page', __name__)
from web.controllers.api.Member import *
@route_api.route("/")
def index():
return "Mina Api V1.0"
加上第三条后就报错
写回答
1回答
-
IT秃子
提问者
2019-11-15
好了 methods要有s
012021-05-02
相似问题