0

从长远来看,我正在使用 Ionic Storage 来存储数据。现在我想在进入统计页面时检索数据,所以我调用了我创建的服务并在统计页面的 ngOnInit 中编写了方法,但是如果我正确理解了这个问题,它就无法识别存储类的实例化但奇怪的是,当我在 ionViewWillEnter() 中编写方法时它确实有效。我使 ngOnInit 和 ionViewWillEnter 都异步,但我仍然收到 ngOnInit 错误。如果我没记错的话,我可以使用 ionViewWillEnter 技巧,它类似于在我的用例中调用 ngOnInit 中的方法,但我仍然很好奇它为什么会出错......

统计页面的TS:

import { StatsService } from './../service/stats.service';
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-statistics',
  templateUrl: './statistics.page.html',
  styleUrls: ['./statistics.page.scss'],
})
export class StatisticsPage implements OnInit {

  testsAmount: any = 0;

  constructor(public statsService: StatsService) {}

  addJohn(){
    this.statsService.set("1", "john");
  }

  removeAll(){
    this.statsService.clearAll();
  }

  async getJohn(){
    console.log(await this.statsService.get("1"));
  }

  

  async ngOnInit() {
      await this.statsService.set("testSetngOnInit", "blabla");
      console.log("testSet initialized from the ngOnInit");
      console.log(await this.statsService.get("testSetngOnInit"));
  }

  async ionViewWillEnter(){
    await this.statsService.set("testSetionViewWillEnter", "blabla");
      console.log("testSet initialized from the ionViewWillEnter");
    console.log(await this.statsService.get("testSetionViewWillEnter"));
  }

  

}

服务 TS :

import { Injectable } from '@angular/core';
import { Storage } from '@ionic/storage-angular';
import * as CordovaSQLiteDriver from 'localforage-cordovasqlitedriver';

@Injectable({
  providedIn: 'root'
})
export class StatsService {
  
  // private _storage: Storage | null = null;
  private _storage: Storage;

  constructor(public storage: Storage) { 
    this.init();
  }

  async init() {
    // If using, define drivers here: await this.storage.defineDriver(/*...*/);
    await this.storage.defineDriver(CordovaSQLiteDriver);
    const storage = await this.storage.create();
    this._storage = storage;
  }

  async keyExistence(key: string){
    if(await this.get(key) == null){
      return false;
    }
    else{
      return true;
    }
  }

  // Create and expose methods that users of this service can
  // call, for example:
  async set(key: string, value: any) {
    await this._storage?.set(key, value);
  }

  async clearAll() {
    await this._storage.clear();
  }

  async get(key: string) {
    return await this._storage.get(key);
  }

}

这就是我在控制台中得到的: 安慰

我的 IndexDB :

索引数据库

提前致谢 !

4

3 回答 3

1

好吧,我找到了答案!这实际上很容易解决,太愚蠢了,我没有考虑过......所以不是在它自己的类中实例化服务,你必须在你使用它的类中实例化它,所以在我的例子中:

我在服务构造函数中有什么:

constructor(public storage: Storage) { 
    this.init();
  }

但问题是构造函数不能使用 async 语句,所以你不能告诉你的类等待它,所以你需要在使用它的类的 ngOnInit 中初始化:

我使用该服务的页面:

async ngOnInit() {
      await this.statsService.init();
  }

希望这会帮助一些人:)

于 2021-06-02T14:35:55.190 回答
0

错误消息表明 stats.service.ts 中的第 44 行是导致问题的行。您的组件ngOnInit确实在访问服务实例,但服务本身失败了。我想这是因为你的构造函数StatsService正在调用this.init();,但构造函数没有等待它(我认为它不能)。因此,当您尝试访问它时(在 ngOnInit 中)this._storage尚未初始化。

statsService.set似乎成功的原因是因为该方法调用this._storage?.set(key, value)- 请注意?这是一个空条件,这意味着如果_storage为空,则整个表达式的计算结果为null

我不确定,但我假设ionViewWillEnter在组件生命周期的后期调用,并且统计服务构造函数有足够的时间来完全初始化。另一方面,ngOnInit在组件构造函数之后立即调用。

于 2021-05-29T21:46:21.480 回答
0

在 AppComponent 中调用 init 以创建存储实例。这应该只调用一次。

export class AppComponent implements OnInit,{

  constructor(
    private storage: StorageService
    ) {}

  async ngOnInit() {
    await this.storage.init();
}
于 2021-07-20T13:06:20.980 回答