我想安排一个触发某些功能的功能。该功能写在控制器
中class SomeClass(http.Controller):
@http.route('/web/', type='http', auth="user")
@serialize_exception
def index(self, data, token):
some code
所以现在我想从
调用这个函数scheduler.xml
档案。但我的问题是我没有任何模特。那么如何调用此函数并定期安排它?