4

Please explain in simple way what is the benefit of using a JavaScript templating engine?

We can write HTML quickly using Zen coding and even if we want some quick html code with data we can make our own code snippet collection and re-use it or use like http://html-ipsum.com/

and if we use any JavaScript templating engine then what about SEO and if JavaScript is disabled in users browser.

4

1 回答 1

1

JavaScript 模板库的主要用途(有关模板库的示例,请参阅本文http://stephenwalther.com/blog/archive/2010/11/30/an-introduction-to-jquery-templates.aspx)是提供一种更优雅的方式来创建动态 DOM 元素。旧的方式是很多 'part' + of + ' ' + my + 'code 是一个字符串,而 ' + the + rest + ' 是变量和标记的集合'。虽然这个说法没有任何“错误”,但它确实会导致一些非常不可读的代码。

模板允许您将此编译抽象为 DOM 占位符,以便您可以在 HTML 中处理它所属的所有 HTML 生成。

于 2012-04-21T16:01:20.980 回答