Работа с RxJS и ReactJS
В этой главе мы увидим, как использовать RxJ с ReactJS. Мы не будем вдаваться в процесс установки Reactjs здесь, чтобы узнать об установке ReactJS, обратитесь по этой ссылке: /reactjs/reactjs_environment_setup.htm
пример
Мы будем работать непосредственно над примером ниже, где будем использовать Ajax из RxJS для загрузки данных.
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>
Мы использовали ajax из RxJS, который будет загружать данные с этого URL-адреса -https://jsonplaceholder.typicode.com/users.
Когда вы компилируете, дисплей будет таким, как показано ниже -