What is the difference between templates and design patterns in JavaScript?
I read about the template method design pattern and now I wonder how it relates to JavaScript templates (if at all).
-
Your question is incredibly unclear. Also this has nothing to do with php, please remove that tag.Chris Eberle– Chris Eberle2011年09月08日 19:40:47 +00:00Commented Sep 8, 2011 at 19:40
-
1"Suggest some of them" Yessir!Jose Faeti– Jose Faeti2011年09月08日 19:54:12 +00:00Commented Sep 8, 2011 at 19:54
-
@Jose - that was a word for word copying from a test or homework assignment, thus the imperative wordingDVK– DVK2011年09月08日 20:21:45 +00:00Commented Sep 8, 2011 at 20:21
2 Answers 2
Templates (in the Javascript world) are a method to display Javascript (model) data in an HTML (or other) view.
Design patterns are known (and battle tested) methods of solving common problems.
Really, Javascript templates could be construed as a design pattern (depending on who you ask ;)).
Design patterns are used to solve commonly encountered problems related to software design. Once you know how to solve a particular problem, when that problem presents again you can reuse the same approach you used before, the same pattern.
Patterns are not related to JavaScript only, but to every language.
The JavaScript Templates you are referring about may be a technique used to generate data in the document, originally called Micro-templating by the inventor, John Resig (jQuery).
Here's an article to better understand them.
And here's one for applying common design patterns in JS.
-
Thanks for your reply. please suggest some javascript templatesSwathi– Swathi2011年09月09日 06:42:13 +00:00Commented Sep 9, 2011 at 6:42
-
Embeddedjs is a library to help you with templates. And TrimPath is an example of JS template.Jose Faeti– Jose Faeti2011年09月09日 06:51:11 +00:00Commented Sep 9, 2011 at 6:51