标签:turn xtend end import pre ret ext export this
import React from "react";
class App extends React.Component {
state = {
a: 0
};
componentDidMount() {
this.setState({ a: this.state.a + 1 });
console.log(this.state.a); // 0
this.setState({ a: this.state.a + 1 });
console.log(this.state.a); // 0
setTimeout(() => {
this.setState({ a: this.state.a + 1 });
console.log(this.state.a); // 2
this.setState({ a: this.state.a + 1 });
console.log(this.state.a); // 3
}, 0);
}
render() {
return <>hello world</>;
}
}
export default App;
标签:turn xtend end import pre ret ext export this
原文地址:https://www.cnblogs.com/ajanuw/p/12488107.html