-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path11.发送ajax请求state渲染组件.html
50 lines (49 loc) · 1.07 KB
/
11.发送ajax请求state渲染组件.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="./build/react.js"></script>
<script src="./build/react-dom.js"></script>
<script src="./build/browser.min.js"></script>
<script src="http://cdn.bootcss.com/jquery/2.2.2/jquery.min.js"></script>
</head>
<body>
<div id="example"></div>
<div id="example1"></div>
<div id="example2"></div>
<script type="text/babel">
class UserGist extends React.Component{
constructor(props) {
super(props);
this.state={
username:"",
lastGistUrl:""
}
}
render() {
return (
<div>
{this.state.username}'s last gist is
<a href={this.state.lastGistUrl}> here</a>
</div>
)
}
componentDidMount() {
$.get(this.props.source,(result)=>{
let lastGist=result[0];
/*console.log(lastGist);*/
this.setState({
username:lastGist.owner.login,
lastGistUrl:lastGist.html_url
})
})
}
}
ReactDOM.render(
<UserGist source="https://api.github.com/users/octocat/gists" />,
document.getElementById("example")
)
</script>
</body>
</html>