我正在使用flask_api
构建一个简单的Web应用程序,但是我得到了TypeError
。
这是我的代码:
user.py
:
#!/usr/bin/env python
from flask.ext.api import FlaskAPI
from flask import request, url_for
class User_operations(object):
def login_v(self):
return 'hello'
app.py
:
#!/usr/bin/env python
from flask.ext.api import FlaskAPI
from user import User_operations
app = FlaskAPI(__name__)
bj = User_operations()
@app.route('/example/',methods=['GET', 'POST'])
def example():
bj.login_v()
if __name__ == "__main__":
app.run(debug=True)
这给了我错误:
"TypeError: 'NoneType' object is not callable"
答案 0 :(得分:0)
在您的观看功能example
中,您错过了return statement
:
@app.route('/example/',methods=['GET', 'POST'])
def example():
return bj.login_v()