fish-redux 单页面里面如何兼容多个adapter?

q5lcpyga  于 4个月前  发布在  其他
关注(0)|答案(1)|浏览(82)

页面里面引入compontent,compontent引入adapter,但是.compontent的state里面的数据值需要从外层传入,数据由接口返回,目前使用connerctor的方式传入,但是connector里面的get数据的时候,只有第一次是正确的,之后在获取会init最外层的state数据,即初始化,如何解决?

lhcgjxsq

lhcgjxsq1#

需要在connector的set中 state.data = substate.data; 子级component中 update(data)

相关问题