如何在 {{tmpl}} 标签内使用其他 Jquery 模板标签

发布于 2024-11-08 14:53:53 字数 215 浏览 0 评论 0原文

我无法在 {{tmpl}} 内调用任何其他模板标记。看起来解析器无法识别传递给 {{tmpl}} 标记的其他标记。

例如:

{{tmpl(Students) '<span>${$data.Name}</span>'}}

有人可以告诉我上面的例子是否合法吗?

I was not able to call any other template tag inside {{tmpl}}. Looks like the parser is failing to identify other tags which are passed to {{tmpl}} tag.

For Example :

{{tmpl(Students) '<span>${$data.Name}</span>'}}

can somebody let me know if above example is legal?

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

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

发布评论

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

评论(1

鹿! 2024-11-15 14:53:53

语法中的

{{tmpl( [data], [options] ) template}} content {{/tmpl}}

template用作模板的 HTML 标记或文本。 这意味着您很可能无法执行此操作。我不知道这是否重要,但您可以尝试使用双引号,就像在示例中看到的那样,因为单引号因不评估嵌入变量而闻名......

The syntax is

{{tmpl( [data], [options] ) template}} content {{/tmpl}}

where template is the The HTML markup or text to use as a template. which means you most likely won't be able to do that. I don't know if it matters but you could try to use double quotes like you see in the examples, because single quotes are known for not evaluating embedded variables...

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