3

我有以下设置:

  • aws-放大反应
  • 应用同步
  • 创建反应应用

并遵循此文档:https ://aws.github.io/aws-amplify/media/api_guide#connect

正如在文档中一样,undefined在返回正确数据之前,渲染它会给我 2x 数据。getRoom.id这会破坏应用程序,因为无法访问嵌套字段(在我的示例中,例如)。

组件示例:

export const AppSyncTest = () => (
  <Connect query={graphqlOperation(query)}>
    {({ data: { getRoom } }) => {

      console.log(getRoom); // returns undefined 2x before data is there

      if (!getRoom) { // without this, app breaks
        return 'why? (can even happen if loading is false)';
      }

      return (
        <div className="App">
          <header className="App-header">
            <h1 className="App-title">Welcome to IntelliFM WebApp</h1>
          </header>
          <p className="App-intro">
            Found room {getRoom.id} with label {getRoom.label} and description{' '}
            {getRoom.description}
          </p>
        </div>
      );
    }}
  </Connect>
);
4

2 回答 2

1

请参阅AWS API 链接

上述链接中的相关代码片段:

<Connect query={graphqlOperation(queries.listTodos)}>
            {({ data: { listTodos }, loading, error }) => {
                if (error) return (<h3>Error</h3>);
                if (loading || !listTodos) return (<h3>Loading...</h3>);
                return (<ListView todos={listTodos.items} /> );
            }}
        </Connect>

请注意,Connect 组件的内部不仅带有“数据”,还带有“错误”和“加载”。由于这是一个异步请求,如果您尝试立即返回数据,它不会在那里,但是如果您按照上面的示例进行操作(当然假设您的请求返回数据),您应该会很好。

于 2019-08-19T16:14:26.820 回答
1

我遇到了同样的问题,我认为 amplify 期望开发人员检查响应是否为Ready. 我通过以下方式解决了它:

<Connect query={graphqlOperation(someAppSyncQuery)}>
  {this.test}
</Connect>


const test = (appSyncResponseObject: any): any => {
  if (appSyncResponseObject.data == null ||
      appSyncResponseObject.data.getRecords == null) {
      return null;
    } else {
      const records = appSyncResponseObject.data.getRecords;
      return (
        <div>
          <h3>List all records</h3>
          <ul>
            {records.map(
              (records) =>
                (<li key={records.uuid}>{records.context}</li>)
            )
            }
          </ul>
        </div>
      )
    }
}

于 2018-10-02T07:39:21.507 回答