withState 与 withStateHandlers

withState vs. withStateHandlers

文档@ https://github.com/acdlite/recompose/blob/master/docs/API.md#withstate 是关于 withState

You'll likely want to use this state updater along with withHandlers() to create specific updater functions.

然后它有一个单独的功能withStateHandlers(),虽然形式略有不同,但看起来很相似。

在实际使用以及为什么使用一个而不是另一个方面,它们有何不同?

其实withStateHandlers()最近才出现recompose版本。如果可以的话,我建议使用 withStateHandlers() 而不是组合 withState()withHandlers()

withState() 下的文档可能需要更新。