-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblllld.txt
97 lines (69 loc) · 1.77 KB
/
blllld.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
template element parser
import Mytemplate from 'mytemplate'
import ChildTemplate from 'ChildTemplate'
div{@textContext}>
span{$htmlContext}+
div[@attr,@attr.key=@attr.val,nval=val]+
Mytemplate>
ChildTemplate
<div>{{textContext}}
<span>{{htmlContext}}</span>
<div {{...attr}}></div>
<mytemplate>
<childtemplate></childtemplate>
</mytemplate>
<div>
在渲染到不是html组件时,取页面组件,如果没有,渲染报错,查无组建
components:{Mytemplate}
用@作为引用符,在data里面可以随意引用,修改,内部只会被修改为文本,
而$引用符将会被修饰为html内容。需要传递一个html内容。
data:{
textContext:{ }
attr:{ key:value }
htmlContext: function (safety) {
return true 需要返回true,否则将认为是不安全的html内容,将会引起攻击
}
}
作为文本内容,是可以有子元素节点的,
作为html内容将不再渲染其子元素节点。
<AnchoredHeading level={1}>
<span>Hello</span> world!
</AnchoredHeading>
AnchoredHeading[level=1]
span{Hello}
{ world! }
<script type="text/javascript">
class Template extends Component {
constructor () { }
struct () {
let header = {}
return (
div.container{@text}
ul.menu[forchild=@forusedata]
ChildTemplate[...item]
span.text[forself=@selfloop]{ header }
<div className="container" >
<ul className="menu" >
{ this.state.forusedata.map((item)=>{ return <ChildTemplate {...item} > }) }
</ul>
{ this.state.selfloop.map(()=>{ return <span className="text">{ this.state.header }</span> }) }
</div>
)
}
get forusedata () {
}
get text () {
}
get html () {
}
get selfloop () {
}
data () {
return {
state:"is true",
header:"这是header"
}
}
components () { }
}
</script>