jquery tmpl 默认选项
我有一系列辅助函数来在 jQuery.tmpl 模板内进行格式化等。文档建议这可以作为模板函数中的选项参数传递。我想要的是将所有这些辅助函数默认包含到任何 jquery 模板中,这样我就不必每次都显式添加它。
我意识到这可以通过全局变量来完成,但我有点喜欢 $item.xxx() 语法...有没有办法指定模板的默认选项,类似于 $.ajaxOptions 或任何其他默认机制,或者这从一开始就是一个坏主意?
I have a series of helper functions to do formatting, etc inside jQuery.tmpl templates. The documentation suggests this can be passed in as the options argument in the template function. What I'd like is to have all these helper functions included by default into any jquery template, so I don't have to explicitly add it every time.
I realize this could be done with a global variable, but I kind of like the $item.xxx()syntax... Is there a way to specify default options for templating, similar to $.ajaxOptions or any of the other defaulting mechanisms, or is this a bad idea to begin with?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jQuery 模板插件文档位于此处。不过,我没有看到任何有关全局选项的信息。
您也许可以:
The jQuery templating plugin docs are here. I don't see anything there about global options though.
You could, perhaps: