new Tpl(stropt, dataopt)
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
str |
string |
<optional> |
htmlString |
data |
object |
<optional> |
the data in template |
Members
(static) this.compiler
new and store an instance of Complier
(static) this.data
store the template data
(static) this.str
store the html string
Methods
getAst() → {array}
Get the ast of Tpl after parsing
Returns:
// The format of ast is:
[
{
type: 'tag',
tag: 'div',
attrs: {
class: 'container'
}
children: [
// text node
{
type: 'text',
text: 'This is a text node'
},
// comment node
{
type: 'note',
note: 'This is a comment node'
}
]
},
{
type: 'tag',
tag: 'p',
children: [
{
type: 'text',
text: 'This is the text inner p element'
}
]
}
]
// It stands for:
This is the text inner p element
- Type
- array
getDom() → {Array}
Get the dom array after render
Returns:
// For example:
[
- Type
- Array
overrideRender(name, func) → {Tpl}
Use this method you can override the function of Renderer
Parameters:
Name | Type | Description |
---|---|---|
name |
string | the property of Render |
func |
function | the function |
Returns:
- Type
- Tpl
parse(stropt) → {Tpl}
The method to parse the html string
Parameters:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
str |
string |
<optional> |
this.str
|
Returns:
- Type
- Tpl
render(objopt) → {Tpl}
The method to render the ast
Example
// you can use variable to render html string via "{{}}" and data
var tpl = new Tpl()
var data = {
divClass: 'div',
out: 'outer'
}
var htmlString = `
<div class="{{ divClass }}">
<p>{{ "inner" }}</p>
</div>
<p>{{ out + "p" }}</p>
`
var dom = tpl.parse(htmlString).render({ data: data }).getDom()
//
// dom is:
// [
// <div class="div">
// <p>inner</p>
// </div>,
// <p>outerp</p>
// ]
//
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
obj |
object |
<optional> |
obj: { |
Returns:
- Type
- Tpl