React通过Ajax获取数据

react

React 组件的数据可以通过 componentDidMount 方法中的 Ajax 来获取,当从服务端获取数据库可以将数据存储在 state 中,再用 this.setState 方法重新渲染 UI。

当使用异步加载数据时,在组件卸载前使用 componentWillUnmount 来取消未完成的请求。

以下实例演示了获取 Github 用户最新 gist 共享描述:

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8" />

<title>菜鸟教程 React 实例</title>

<script src="http://static.runoob.com/assets/react/react-0.14.7/build/react.js"></script>

<script src="http://static.runoob.com/assets/react/react-0.14.7/build/react-dom.js"></script>

<script src="http://static.runoob.com/assets/react/browser.min.js"></script>

<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>

</head>

<body>

<div id="example"></div>

<script type="text/babel">

var UserGist = React.createClass({

getInitialState: function() {

return {

username: \'\',

lastGistUrl: \'\'

};

},

componentDidMount: function() {

this.serverRequest = $.get(this.props.source, function (result) {

var lastGist = result[0];

this.setState({

username: lastGist.owner.login,

lastGistUrl: lastGist.html_url

});

}.bind(this));

},

componentWillUnmount: function() {

this.serverRequest.abort();

},

render: function() {

return (

<div>

{this.state.username} 用户最新的 Gist 共享地址:

<a href={this.state.lastGistUrl}>{this.state.lastGistUrl}</a>

</div>

);

}

});

ReactDOM.render(

<UserGist source="https://api.github.com/users/octocat/gists" />,

document.getElementById(\'example\')

);

</script>

</body>

</html>

 

以上是 React通过Ajax获取数据 的全部内容, 来源链接: utcz.com/z/383403.html

回到顶部