SqlStorage Ionic 2作为服务/提供者

时间:2016-05-13 20:19:38

标签: javascript sqlite ionic-framework ionic2

我有离子二的提供者,我有这个:

getCategory() {
    this.storage.query('SELECT * FROM category')
      .then((data) => {
        var category = [];
        if (data.res.rows.length > 0) {
          for (var i = 0; i < data.res.rows.length; i++) {
            category.push({
              name: data.res.rows.item(i).name,
              type: data.res.rows.item(i).type,
              note: data.res.rows.item(i).note
            });
          }
        }
        // console.log(JSON.stringify(category)); 
        return category; // is this correct?
      }, (error) => {
        console.log('Error -> ' + JSON.stringify(error.err));
      });
  }

然后我希望在注入服务之后在我的页面中做这样的事情:

  constructor(nav, theservice) {
    this.nav = nav;
    this.service = theservice
    this.category = service.getCategory()
  }

如何返回结果以便能够使用?当我登录日志this.category

时,尝试以上操作不会返回任何内容

how to use sqlite in ionic 2上的教程很有帮助,但无法弄清楚如何将它们转换为服务/提供者。

1 个答案:

答案 0 :(得分:1)

更新(6月15日,&#39; 16)

我在下面的原始答案中分享了一个链接。在线程上进行了更多的讨论,而早期的答案方法虽然有效但可能不是最佳实践。在这里更新:

service.js

// using beta 7 ionic 2
import {Injectable} from '@angular/core';
import { Storage, SqlStorage } from 'ionic-angular';

@Injectable()
export class CategoryService {
  static get parameters(){
    return []
  }  

  constructor() {
    this.storage = new Storage(SqlStorage);
    this.storage.query('CREATE TABLE IF NOT EXISTS category (id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, type TEXT)');
  }

  getCategory() {
    return this.storage.query('SELECT id, name, type FROM category');
  }
}

然后上面的服务使用如下:

somewhereInCategoryPage.js档案

 loadCategory() {
    this.platform.ready().then(() => {
      this.service.getCategory()
        .then(data => {
          this.category = [];
          if (data.res.rows.length > 0) {
            for (var i = 0; i < data.res.rows.length; i++) {
              let item = data.res.rows.item(i);
              this.category.push({
                'id': item.id,
                'name': item.name,
                'type': item.type
              });
            }
          }
          console.log(this.category);
        }, error => {
          console.log('Error', error.err)
        })
    });
  }

只是想到更新,对于谁知道可能有用。

旧答案留待此处参考

我最终确定了什么。在这里发帖,可能对某人有帮助。来自this thread on ionic forum的指导

在服务/提供商

getCategory() {
   var storage = new Storage(SqlStorage);
   return new Promise(function(resolve, reject) {
       return storage.query('SELECT name, type, note FROM category')
          .then((data) => {
             // kinda lazy workaround
             resolve(data.res.rows);
           });
        });
   }

在构造函数中:

static get parameters() {
    return [ [Myservice] ];
}
constructor(myservice) {
  myservice.getCategory()
  .then((category) => {
    // recreate new array from old category array, or else:
    // EXCEPTION: Cannot find a differ supporting object
    // https://github.com/angular/angular/issues/6392#issuecomment-171428006
    this.categories = Array.from(category);
    console.log(this.categories);
  })
  .catch((error) => {
    console.log(error);
  });
}
模板中的

<ion-list>
    <button ion-item *ngFor="#category of categories">
        {{ category.name }}
        <br>
        <ion-icon name="arrow-forward" item-right></ion-icon>
    </button>
</ion-list>