jquery tmpl 默认选项

发布于 2024-11-02 03:45:33 字数 219 浏览 3 评论 0原文

我有一系列辅助函数来在 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 技术交流群。

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

发布评论

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

评论(1

腹黑女流氓 2024-11-09 03:45:33

jQuery 模板插件文档位于此处。不过,我没有看到任何有关全局选项的信息。

您也许可以:

  • 将代码移到您自己的插件中更容易访问/更通用
  • 或者自己编辑模板插件的代码 - 尽管这可能更复杂,因为您必须了解代码在做什么并知道要修改什么

The jQuery templating plugin docs are here. I don't see anything there about global options though.

You could, perhaps:

  • move your code into your own plugin to make it easier to access/more generic
  • Or edit the templating plugin's code yourself - though this may be more complicated since you'll have to understand what the code is doing and know what to modify
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文