所以對於component-will-receive-props
簽名是這樣的:試劑:如何從元件接收道具獲得新的道具?
https://github.com/reagent-project/reagent/blob/master/src/reagent/core.cljs#L114
:component-will-receive-props (fn [this new-argv])
但new-args
好像它的功能或JS對象。我期待它成爲道具的地圖。我如何從new-argv
獲得道具地圖?我可以通過(reagent/props this)
從this
得到舊道具,但它是舊的道具,沒有新收到。
這將返回當前的道具,而不是新的道具,這是OP正在尋找的東西。 – wpcarro