request.function 在 web2py 中

request.function in web2py

request.functionweb2py 中有什么用。我是 web2y 的初学者,在教程

中遇到了这些行
if not request.function=='first' and not session.visitor_name:
    redirect(URL('first'))

request.function有什么用?

取自 documentation.

request.function: the name of the requested function.

所以在你的情况下。

if not request.function=='first' and not session.visitor_name:
    redirect(URL('first'))

它正在检查函数名称是否不是 first