使用select命令获取数据后,在html中显示jsstore值?

时间:2018-10-06 09:59:43

标签: angular ionic2 indexeddb

简要说明->我使用'select'Api从数据库中选择数据。

home.ts代码->

var connection = new JsStore.Instance();
      var dbName = 'Demo';
  connection.openDb(dbName);

  connection.select({
    from: tblnm,
  }).then(function(results) {
 // results will be array of objects

    console.log(results,'result');

  }).catch(function(err) {
    console.log(err, 'error');
    alert(err.message);
});

它返回一个数组

  

{用户:“ KIRAN”,我的任务:1,分配:4,关注者:5}

如何在html中使用此返回值

1 个答案:

答案 0 :(得分:0)

使用离子列表

<ion-list *ngFor="let element of results; let i = index" no-lines>
   <ion-item>Index: {{ i }} - Text: {{ element }}  
   </ion-item>
</ion-list>