我正在使用我的 VSCode关注本教程https://aws.github.io/aws-amplify/media/api_guide#subscriptions 。
我的 VSCode 一直告诉我该方法有错误subscribe
。
当我查看graphql
方法的定义时,它告诉我graphql({query, variables}: GraphQLOptions): Promise<GraphQLResult> | Observable<object>;
它可以返回一个 Promise 或一个 Observable。好吧,我正在尝试订阅这个 observable。我究竟做错了什么?为什么 VSCode 一直告诉我那里有错误?
错误是:'subscribe' property does not exist in type 'Promise<GraphQLResult> | Observable<object>'.
我必须在我的 中配置一些东西tsconfig.json
吗?
编辑:添加方法定义的屏幕graphql
。