如何在 {{tmpl}} 标签内使用其他 Jquery 模板标签
我无法在 {{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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
语法中的
template
是用作模板的 HTML 标记或文本。
这意味着您很可能无法执行此操作。我不知道这是否重要,但您可以尝试使用双引号,就像在示例中看到的那样,因为单引号因不评估嵌入变量而闻名......The syntax is
where
template
is theThe 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...