简要说明->我使用'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中使用此返回值
答案 0 :(得分:0)
使用离子列表
<ion-list *ngFor="let element of results; let i = index" no-lines>
<ion-item>Index: {{ i }} - Text: {{ element }}
</ion-item>
</ion-list>