alibaba / fish-redux

An assembled flutter application framework.
https://github.com/alibaba/fish-redux
Apache License 2.0
7.33k stars 843 forks source link

fish redux 的 state 怎么跟 json_model 生成的 model 共用呢? #650

Closed ganlanshu0211 closed 4 years ago

ganlanshu0211 commented 4 years ago

我现在使用 json_model 来生成 model 类,用这些 model 类来转换 json 数据。 我从后端获取的文章列表 json 使用 model 解析之后,文章数据就是 PostModel 类,component 的 state 是 PostState 类,effect dispatch 给 reducer 刷新数据的时候会报 Unhandled Exception: type 'PostModel' is not a subtype of type 'PostState' , 请问这个要怎么解决呢?

ganlanshu0211 commented 4 years ago

直接手写字段传值了