如何获取要在 {{if}} 中使用的数据项的值?

发布于 2024-11-05 17:38:28 字数 367 浏览 2 评论 0原文

我试图获取要在 {{if}} 标记中使用的数据项的值,但无法使其工作。那么,问题是我们如何获得这个值?您可以在此处查看完整代码 http://jsfiddle.net/epitka/BhYvh/

<script id="contentHeaderTemplate" type="text/x-jquery-tmpl">
   {{if($data.Id===1)}} Create New Order{{else}}Edit Order {{/if}}      
    <br />
</script>

I am trying to get the value of the data item to use in a {{if}} tag, but cannot get it to work. So, the question is how do we get that value? You can see full code here http://jsfiddle.net/epitka/BhYvh/

<script id="contentHeaderTemplate" type="text/x-jquery-tmpl">
   {{if($data.Id===1)}} Create New Order{{else}}Edit Order {{/if}}      
    <br />
</script>

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

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

发布评论

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

评论(2

平定天下 2024-11-12 17:38:28

去掉括号。

{{if $data.Id === 1 }}

http://jsfiddle.net/mattball/KdqZF/

另请参阅{{if}} 模板标签 API 页面

Drop the parentheses.

{{if $data.Id === 1 }}

http://jsfiddle.net/mattball/KdqZF/

See also the {{if}} template tag API page.

新雨望断虹 2024-11-12 17:38:28

if 语句中不需要括号。尝试:
{{if $data.Id === 1 }}

You don't need the parentheses in that if statement. Try:
{{if $data.Id === 1 }}

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