0

因此,首先我将首先说我对我的突变添加了一个乐观的响应,这样它就会停止产生重复项,如此和前一个 SO问题中所引用的。

所以这一切都有效,但我有一组依赖突变在第一次使用异步等待之后运行。

  submitForm = async () => {
    // Only submit if form is complete
    if (!this.state.saveDisabled) {
      try {
        // Optimistic Response is necessary because of AWS AppSync
        // https://stackoverflow.com/a/48349020/2111538
        const createGuestData = await this.props.createGuest({
          name: this.state.name,
        })
        let guestId = createGuestData.data.addGuest.id

        for (let person of this.state.people) {
          await this.props.createPerson({
            variables: {
              name: person.name,
              guestId,
            },
            optimisticResponse: {
              addPerson: {
                id: -1, // A temporary id. The server decides the real id.
                name: person.name,
                guestId,
                __typename: 'Person',
              },
            },
          })
        }

        this.setState({
          redirect: true,
        })
      } catch (e) {
        console.log(e)
        alert('There was an error creating this guest')
      }
    } else {
      Alert('Please fill out guest form completely.')
    }
  }

现在这可行,并且它使用与示例项目相同的突变模式

export default compose(
  graphql(CreateGuestMutation, {
    name: 'createGuest',
    options: {
      refetchQueries: [{ query: AllGuest }],
    },
    props: props => ({
      createGuest: guest => {
        console.log(guest)
        return props.createGuest({
          variables: guest,
          optimisticResponse: () => ({
            addGuest: {
              ...guest,
              id: uuid(),
              persons: [],
              __typename: 'Guest',
            },
          }),
        })
      },
    }),
  }),
  graphql(CreatePersonMutation, {
    name: 'createPerson',
  }),
)(CreateGuest)

唯一的问题是我无法强制将状态更新为使用 Async Await 时实际插入的 ID,因此所有人员条目都会获得占位符 UUID。请注意,我也尝试过使用id: -1createPerson 突变,但这并没有改变任何东西,它只是对所有整体使用了负数。

有没有更好的方法来做到这一点?我做错了什么。这一切都在没有optimisticResponse 的情况下工作,但它总是为每个突变创建两个条目。

4

1 回答 1

2

你能再试一次吗?AppSync SDK for Javascript 得到了增强,不再需要您使用 Optimistic Response。如果您仍然想要一个乐观的 UI,您可以选择使用它。

此外,如果这不是您的应用程序的要求,您现在还可以禁用离线功能,方法disableOffline如下:

const client = new AWSAppSyncClient({
    url: AppSync.graphqlEndpoint,
    region: AppSync.region,
    auth: {
        type: AUTH_TYPE.API_KEY,
        apiKey: AppSync.apiKey,
    },
    disableOffline: true
});
于 2018-02-15T05:37:32.577 回答