RxJS 및 ReactJS 작업
이 장에서는 ReactJS와 함께 RxJ를 사용하는 방법을 볼 것입니다. 여기서 Reactjs의 설치 과정에 들어 가지 않을 것입니다. ReactJS 설치에 대해 알고 싶다면 다음 링크를 참조하십시오 : /reactjs/reactjs_environment_setup.htm
예
RxJS의 Ajax를 사용하여 데이터를로드하는 아래 예제에서 직접 작업 할 것입니다.
index.js
import React, { Component } from "react";
import ReactDOM from "react-dom";
import { ajax } from 'rxjs/ajax';
import { map } from 'rxjs/operators';
class App extends Component {
constructor() {
super();
this.state = { data: [] };
}
componentDidMount() {
const response = ajax('https://jsonplaceholder.typicode.com/users').pipe(map(e => e.response));
response.subscribe(res => {
this.setState({ data: res });
});
}
render() {
return (
<div>
<h3>Using RxJS with ReactJS</h3>
<ul>
{this.state.data.map(el => (
<li>
{el.id}: {el.name}
</li>
))}
</ul>
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById("root"));
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8" />
<title>ReactJS Demo</title>
<head>
<body>
<div id = "root"></div>
</body>
</html>
이 URL에서 데이터를로드하는 RxJS에서 ajax를 사용했습니다.https://jsonplaceholder.typicode.com/users.
컴파일하면 다음과 같이 표시됩니다.