1

我在 MobX 状态树存储中执行了三个操作:第一个从 API 获取数据,第二个使用数据库中 API 的数据发送 POST 请求,第三个获取响应并将其保存到存储中。

存储只是由这些称为列表的数据结构的映射组成:

export const ListStore = types
  .model('ListStore', {
    lists: types.map(List),
  })

发送 GET 和 POST 请求的前两个操作可以正常工作:

 .actions((self) => ({
    fetchTitles: flow(function* fetchTitles(params: Params) {
      const env = getStoreEnv(self);
      const { clients } = env;
      const browseParams: BrowseParams = {
        category: 'movies',
        imdb_score_min: params.filter.imdbFilterScore,
      };
      let browseResult;
      try {
        browseResult = yield clients.browseClient.fetch(browseParams);
      } catch (error) {
        console.error('Failed to fetch titles', error);
      }
      return browseResult.data.results.map((title) => title.uuid);
    }),
  }))
  .actions((self) => ({
    postList: flow(function* postList(params: Params) {
      const env = getStoreEnv(self);
      const { clients } = env;
      const titles = yield self.fetchTitles(params);
      return clients.listClient.create({
        name: params.name,
        titles,
        invites: params.invites,
        filter: params.filter,
      });
    }),
  }))

但是当涉及到第三个动作时,实际上将 List 保存到 ListStore,就没有这样的运气了。我已经尝试了很多变体,但它们都不起作用。老实说,我对生成器语法不太熟悉,我什至尝试在没有生成器的情况下这样做。在这里你可以看到我的尝试:

createList: flow(function* createList(params: Params) {
  const env = getStoreEnv(self);
  const list = yield self.postList(params);
  console.log('list in createList', list.data);
  return self.lists.put(List.create({ ...list.data }, env));
  // return self.lists.set(list.id, list.data);
}),
createList: flow(function* createList(params: Params) {
  const list = yield self.postList(params);
  console.log('list in createList', list.data);
  yield self.lists.set(list.id, list.data);
}),
createList(params: Params) {
  return self.postList(params).then((list) => {
    console.log('list in createList', list.data);
    self.lists.set(list.id, list.data);
  });
},
createList: flow(function* createList(params: Params) {
  yield self.postList(params).then((list) => {
    console.log('list in createList', list.data);
    return self.lists.set(list.id, list.data);
  });
}),

我都尝试过.set()and .put(),但无济于事。我也尝试过使用yield并且return...似乎没有任何效果。登录的数据console.log('list in createList', list.data);看起来正确并与模型匹配(如果不正确,我会不会收到错误消息?)。没有错误记录到控制台,它只是默默地失败。

如果您能发现错误并查看应该如何编写,我将非常感激。谢谢!

4

1 回答 1

0

事实证明,问题不在于语法:正如您在 MST 维护者的第一条评论中看到的那样,第二个版本是正确的。

问题在于模型(此处未显示)的创建方式。

于 2018-07-26T13:50:42.697 回答