jQuery 模板系统用大括号中断
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您正在尝试将 jQuery 模板和手动模板函数混合在一起。两者都可以使用 jQuery 模板吗?
您可以使用 jQuery 模板的 {{tmpl}} 在另一个模板中渲染其中一个模板:
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: