另一个表显示了错误的结果,直到我重新安装了iOS应用程序。现在它显示正确的结果,但是当我指定nextToken时,它说没有更多数据,尽管控制台显示有数据。
如何在快速的应用程序中获取正确的数据?我使用了本教程:https://aws-amplify.github.io/docs/ios/start?ref=amplify-iOS-btn
我的代码:
var entities: [Post] = []
if startKey == nil {//nextToken == nil: no more posts
return
}
let query = ListPostsQuery()
query.limit = 2
if startKey != "" {//when the app starts startKey == “”
query.nextToken = startKey
}
appSyncClient?.fetch(query: query) {(result, error) in
//code
})