-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
73 lines (59 loc) · 1.55 KB
/
index.js
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
import React from './react';
import ReactDOM from './react-dom'
//如果是jsx对象
const JSX = (
<div className="active" title="123">
hello,<span>mini react</span>
</div>
)
class Comp extends React.Component {
render() {
return (
<div className="active" title="123">
hello,<span>mini react</span>
</div>
)
}
}
class Counter extends React.Component {
constructor( props ) {
super( props );
this.state = {
num: 0
}
}
static getDerivedStateFromProps(nextProps, prevState) {
console.log('getDerivedStateFromProps', nextProps, prevState);
return null;
}
shouldComponentUpdate() {
console.log( 'shouldComponentUpdate' );
return true;
}
handerClick() {
this.setState( { num: this.state.num + 1 } );
}
render() {
return (
<div className="active" title="123" id="test">
hello,<span>mini react</span> {this.state.num}
<button onClick={ () => {
this.handerClick();
}}>add</button>
</div>
);
}
componentDidMount () {
console.log('组件挂载');
const dom = document.getElementById('test')
console.log('dom', dom);
}
}
function Fun () {
return (
<div className="active" title="123">
hello,<span>mini react</span>
</div>
)
}
ReactDOM.render(<Counter abc="123" />, document.querySelector('#app'));