要给出“Angular GraphQL与Apollo”包含代码示例的解决方法,我们可以按照以下步骤操作:
安装所需的依赖项:
npm install apollo-angular apollo-angular-link-http apollo-client graphql
在Angular应用程序的根模块(通常是app.module.ts
)中导入所需的模块:
import { HttpClientModule } from '@angular/common/http';
import { ApolloModule, Apollo } from 'apollo-angular';
import { HttpLinkModule, HttpLink } from 'apollo-angular-link-http';
import { InMemoryCache } from 'apollo-cache-inmemory';
@NgModule({
imports: [
HttpClientModule,
ApolloModule,
HttpLinkModule
],
// ...
})
export class AppModule {
constructor(
apollo: Apollo,
httpLink: HttpLink
) {
const http = httpLink.create({ uri: 'http://localhost:3000/graphql' });
apollo.create({
link: http,
cache: new InMemoryCache()
});
}
}
在组件中使用Apollo进行GraphQL查询:
import { Component } from '@angular/core';
import { Apollo } from 'apollo-angular';
import gql from 'graphql-tag';
@Component({
selector: 'app-my-component',
template: `
Loading...
Error: {{error.message}}
{{user.name}}
{{user.email}}
`,
})
export class MyComponent {
loading = true;
user: any;
error: any;
constructor(private apollo: Apollo) {}
ngOnInit() {
this.apollo
.watchQuery({
query: gql`
query GetUser($id: ID!) {
user(id: $id) {
name
email
}
}
`,
variables: {
id: '1'
}
})
.valueChanges.subscribe(result => {
this.loading = result.loading;
this.user = result.data && result.data.user;
this.error = result.error;
});
}
}
这是一个基本的示例,演示了如何在Angular中使用Apollo进行GraphQL查询。你需要根据自己的API端点和查询需求进行相应的更改。同时,还可以使用apollo-angular
和apollo-angular-link-http
提供的其他功能,如分页、订阅等。