Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. @app.route("/www/index")
  2. @mobile_request # 使用decorator包装方法
  3. def get_user(**kwargs):
  4. user_info = kwargs['user_info'] # 取出decorator中封装好的user_info
  5. return db.get_user(user_info) # 利用user_info进行逻辑处理
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement