jQuery 模板系统用大括号中断

发布于 2024-10-11 11:31:08 字数 195 浏览 3 评论 0原文

我正在使用 jQuery 模板,一旦我开始使用大括号,它们似乎就会中断:

${App.t('General', 'Number of users: {users}', { users: 2 })}

它甚至会在引号内出现一个 } 中断。

我应该怎么做才能避免这种情况——有没有办法转义这些字符?

I am using jQuery templates and they seem to break as soon as I start using curly braces:

${App.t('General', 'Number of users: {users}', { users: 2 })}

It even breaks with a single } within the quotes.

What should I do to avoid this -- is there a way to escape those characters?

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

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

发布评论

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

评论(1

才能让你更想念 2024-10-18 11:31:08

看起来您正在尝试将 jQuery 模板和手动模板函数混合在一起。两者都可以使用 jQuery 模板吗?

您可以使用 jQuery 模板的 {{tmpl}} 在另一个模板中渲染其中一个模板:

<script type="x-jquery-tmpl" id="yourTemplate">
  {{tmpl({users: 2}) "#subTemplate"}}
</script>

<script type="x-jquery-tmpl" id="subTemplate">
  Number of users: ${users}
</script>

It looks like you're trying to mix jQuery Templates and a hand-rolled templating function there. Can you use jQuery Templates for both?

You can use jQuery Templates' {{tmpl}} to render one of its templates inside of another:

<script type="x-jquery-tmpl" id="yourTemplate">
  {{tmpl({users: 2}) "#subTemplate"}}
</script>

<script type="x-jquery-tmpl" id="subTemplate">
  Number of users: ${users}
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文