- Notifications
You must be signed in to change notification settings - Fork0
CocaColf/html-template-engine
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
一个简单的html模板引擎。
// tpl为html模板, data为传入的数据对象tplEngine(tpl,data);
let tpl = ` <div><%title%></div> <% var key in arr %> <p><% arr[key] %> <% } %> <% if(this.status !== 1) { %> <div><% option %></div> <% } %> <% else {%> <div><% saySomething %></div> <% } %> ` let parsedHTML = tplEngine(tpl, { title: '例子', arr: ['apple', 'orange'], option: '重启', saySomething: '当前状态良好'});这是使用它来解决一个真实需求,同时也是因这个需求而编写了这个函数。
About
html模板引擎
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.