JavaScript 模板引擎。使用理由
你知道使用 javascript 模板引擎的原因有哪些吗?何时使用以及避免使用它?
当我们已经安装了像 jQuery 这样的框架时,我们还需要使用像 underscore.js 这样的 JTE 吗?
另外,您可以推荐哪些用于 jQuery 的模板引擎?
What reasons for using javascript template engines do you know? When to use and to avoid using it?
And do we need to use JTE like underscore.js, when we already have framework like jQuery installed?
Also, what template engines for using with jQuery you can recommend?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
旧版浏览器缺乏新的 ecmascript/javascript 功能和特性。当您需要使用最新的功能(map、reduce)和特性(html5、css3、websockets)时,您可能需要像 Underscore、modernizr 等这样的库。它们也会缩短您的代码。 Underscore 具有您可以使用的有用实用程序/帮助函数。
我个人使用带有node的jade。这对于快速查看/渲染非常有用。
Older browsers lack of new ecmascript/javascript functions and features. When you need to use latest functions (map, reduce) and features (html5, css3, websockets) you may need that kind of libraries like Underscore, modernizr etc. They are also shorten your code. Underscore has useful utility/helper functions that you can use.
I personally using jade with node. It's very useful for quick view/renders.