web2py:使用 LOAD 中的函数(ajax)

发布于 2024-11-17 06:18:13 字数 374 浏览 1 评论 0原文

是否可以将 =LOAD(...) 与函数而不是控制器/函数字符串一起使用,

例如:

Controller:
def test():
    print "test"

def index():
    return dict(test=test)

View:

{{=LOAD(test, ajax=True)}}

而不是:

View:

{{=LOAD('controller', 'test', ajax=True)}}

主要原因是,我想使用无法通过这种方式访问​​的 lambda/生成函数。

Is it possible to use =LOAD(...) with a function rather then controller/function string

e.g:

Controller:
def test():
    print "test"

def index():
    return dict(test=test)

View:

{{=LOAD(test, ajax=True)}}

rather then:

View:

{{=LOAD('controller', 'test', ajax=True)}}

The main reason being, I want to use lambda/generated functions which cannot be accessed this way.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉睡月亮 2024-11-24 06:18:13

不。但这并不是因为不支持该语法,而是因为这在逻辑上是不可能的:LOAD() 是在与执行 lambda 的请求不同的 http 请求中执行的,因此后者将是未定义的。此外,要执行ajax回调,被调用的函数必须有一个名称,不能是lambda。我们可以创造性地使用缓存,以便 LOAD 将 lambda 存储在缓存中:

def callback():
    """ a generic callback """
    return cache.ram(request.args(0),lambda:None,None)(**request.vars)

def LOAD2(f,vars={}):
    """ a new load function """
    import uuid
    u = str(uuid.uuid4())
    cache.ram(u,lambda f=f:f,0)
    return LOAD(request.controller,'callback',args=u,vars=vars,ajax=True)

def index():
    """ example of usage """
    a = LOAD2(lambda:'hello world')
    return dict(a=a)

但这仅适用于 cache.ram,并且需要定期清理缓存。

No. But not because the syntax is not supported, because it is logically impossible: the LOAD() is executed in a different http request than the one in which the lambda would be executed and therefore the latter would be undefined. Moreover to perform the ajax callback, the called function must have a name, cannot be a lambda. We could come up with a creative use of cache so that LOAD stores the lambda in cache:

def callback():
    """ a generic callback """
    return cache.ram(request.args(0),lambda:None,None)(**request.vars)

def LOAD2(f,vars={}):
    """ a new load function """
    import uuid
    u = str(uuid.uuid4())
    cache.ram(u,lambda f=f:f,0)
    return LOAD(request.controller,'callback',args=u,vars=vars,ajax=True)

def index():
    """ example of usage """
    a = LOAD2(lambda:'hello world')
    return dict(a=a)

But this would only work with cache.ram and would require periodic cache cleanup.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文