在Angular 8的graphql.module中,localStorage.getItem不可用的原因可能是因为在该模块中无法访问全局的localStorage对象。为了解决这个问题,你可以通过将localStorage对象传递给graphql.module来访问它。
以下是一个可能的解决方法的代码示例:
import { Injectable } from '@angular/core';
declare var localStorage: any;
@Injectable()
export class GraphQLModule {
constructor() {
// 将localStorage对象传递给GraphQL模块
const localStorageInstance = localStorage;
// 在这里可以使用localStorageInstance来访问localStorage的方法,如getItem、setItem等
const value = localStorageInstance.getItem('key');
console.log(value);
}
}
请注意,这里使用了declare var语句来告诉TypeScript编译器在这个文件中有一个全局的localStorage对象,以便可以引用它。
通过上述解决方法,你应该能够在Angular 8的graphql.module中使用localStorage.getItem方法。