首页 > 其他 > 详细

React进阶

时间:2021-03-02 10:31:33      阅读:38      评论:0      收藏:0      [点我收藏+]

定时器、网络请求、事件监听,在组件被销毁前都应该得到相应的处理

App.js

import React from ‘react‘;
import Demo1 from ‘./components/Demo1/parent‘;
import Home from ‘./components/Home‘;
import { HashRouter, Route, Switch } from ‘react-router-dom‘;

function App() {
	return (
		<HashRouter>
			<Switch>
				<Route exact path="/" component={Home}></Route>
				<Route path="/demo1" component={Demo1}></Route>
			</Switch>
		</HashRouter>
	);
}

export default App;

src\components\Home.jsx

import React from ‘react‘;

function Home() {
	return <div>Home</div>;
}

export default Home;

src\components\Demo1\parent.jsx

import React from ‘react‘;

/**
 * 计数例子
 *
 * 定时器
 * 网络请求
 * 事件监听
 *    在组件被销毁前都应该得到相应的处理
 *
 */

const MyAPI = {
	count: 0,
	subscribe(cb) {
		this.intervalId = setInterval(() => {
			this.count += 1;
			cb(this.count);
		}, 1000);
	},
	unSubscribe() {
		clearInterval(this.intervalId);
	},
	reset() {
		this.count = 0;
	},
};

export default class parent extends React.Component {
	state = {
		count: 0,
	};

	componentDidMount() {
		MyAPI.subscribe((currentCount) => {
			this.setState({
				count: currentCount,
			});
		});
	}

	render() {
		console.log(this.state.count);
		return <div>Parent: {this.state.count}</div>;
	}
}

现象:
技术分享图片

解决方案:
在componentWillUnmount处理相应的事件

src\components\Demo1\parent.jsx

import React from ‘react‘;

/**
 * 计数例子
 *
 * 定时器
 * 网络请求
 * 事件监听
 *    在组件被销毁前都应该得到相应的处理
 *
 */

const MyAPI = {
	count: 0,
	subscribe(cb) {
		this.intervalId = setInterval(() => {
			this.count += 1;
			cb(this.count);
		}, 1000);
	},
	unSubscribe() {
		clearInterval(this.intervalId);
	},
	reset() {
		this.count = 0;
	},
};

export default class parent extends React.Component {
	state = {
		count: 0,
	};

	componentDidMount() {
		MyAPI.subscribe((currentCount) => {
			this.setState({
				count: currentCount,
			});
		});
	}

	componentWillUnmount() {
		MyAPI.unSubscribe();
	}

	render() {
		console.log(this.state.count);
		return <div>Parent: {this.state.count}</div>;
	}
}

效果:
技术分享图片

React进阶

原文:https://www.cnblogs.com/lhongsen/p/14466774.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!