request.function 在 web2py 中
request.function in web2py
request.function
在 web2py
中有什么用。我是 web2y
的初学者,在教程
中遇到了这些行
if not request.function=='first' and not session.visitor_name:
redirect(URL('first'))
request.function
有什么用?
request.function: the name of the requested function.
所以在你的情况下。
if not request.function=='first' and not session.visitor_name:
redirect(URL('first'))
它正在检查函数名称是否不是 first
。
request.function
在 web2py
中有什么用。我是 web2y
的初学者,在教程
if not request.function=='first' and not session.visitor_name:
redirect(URL('first'))
request.function
有什么用?
request.function: the name of the requested function.
所以在你的情况下。
if not request.function=='first' and not session.visitor_name:
redirect(URL('first'))
它正在检查函数名称是否不是 first
。