fix: 更正按钮点击时,UI DOM展示state不一致问题,正确渲染list的长度,补充TS参数类型的定义#3
Open
fix: 更正按钮点击时,UI DOM展示state不一致问题,正确渲染list的长度,补充TS参数类型的定义#3
Conversation
xiaohuoni
reviewed
Jul 28, 2020
| export default ({ initNumber = 0 }: ItemProps) => { | ||
| // 2. setstate 需要驼峰标识 | ||
| const [state, setState] = useState(initNumber); | ||
| const [flag, setFlag] = useState(true); |
| style={{ fontSize: '30px' }} | ||
| onClick={() => { | ||
| setstate(state + 1) | ||
| layoutEmitter.emit({ state }); |
| onClick={() => { | ||
| setstate(state + 1) | ||
| layoutEmitter.emit({ state }); | ||
| setState(state => state + 1) |
| } | ||
| export default () => { | ||
| const [list, setList] = useState([]); | ||
| const [list, setList] = useState([] as Array<State>); |
| console.log(list); | ||
| setList(list); | ||
| // 4. list 为数组,引用数据类型,我们不能直接操作state要结构出来 | ||
| const listData = [...list] |
| this.subscriptions(val); | ||
| }; | ||
|
|
||
| useSubscription = (callback: Subscription<T>) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
通过useEffect实现因为setState异步问题,不能把最新数据进行传递问题,补充TS参数的类型定义