将局部变量传递给 Erlydtl 块
我有一个 erlydtl 代码块,我反复使用它,并希望抽象为某种块/部分模板。问题是我需要向块传递一个局部变量。这可以通过 Rails 部分模板实现;看起来 Django 的块是可能的[尽管使用了某种 Python hackery]; 是否可能
我想知道 Erlydtl [Django 模板的 Erlang 实现] Ideas
?感谢您。
I've got a block of erlydtl code which I use repeatedly and would like to abstract to some kind of block / partial template. The issue is that I need to pass the block a local variable. This is possible with Rails partial templates; it looks like it's possible with Django's blocks [albeit with some kind of Python hackery]; I'm wondering if it's possible with Erlydtl [Erlang implementation of Django templates]
Ideas ?
Thanks you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可以使用需要传递给它的变量来呈现部分模板,并将该呈现的结果传递到完整模板中。
我可能会弄错你想要什么,所以如果我是的话,请添加一些例子。
Maybe you could render the partial template with the variables you need to pass to it, and pass the result of that rendition into the full template.
I could be mistaken of what it is that you want, so please add some examples if I am.