通常情况下,它被视为使用useSelector,如下
const count = useSelector(getCount);
addCount(count)
如果我们使用下面给出的useSelector,会有什么问题吗?
addCount(useSelector(getCount))
它仍然有效!但最佳实践和干净的代码,您应该像第一个选项一样编写!
const count = useSelector(getCount);
addCount(count)