Web2py LOAD-helper 中的 'times=X' 是什么?

What does 'times=X' in Web2py LOAD-helper?

在我找到的 Web2Py 书中 this: 它指出:

times specifies how many times the component is to be requested. Use "infinity" to keep loading the component continuously. This option is useful for triggering regular routines for a given document request.

如何以及何时使用它?

例如,您可以将它与 timeout 一起使用,以显示有关某事的推文、最近的更新或最近的消息...持续更新的内容。

这将每 5 秒调用并显示 last_messages

LOAD(c='default', f='last_messages', 
     extension='load', target='mydiv',
     ajax=True, timeout=5000, times='infinity')