ng2-smart-table getAll()方法

时间:2017-10-30 11:42:54

标签: javascript angular

我需要能够从表中检索所有记录。我正在使用localDatasource。但不幸的是使用下面的代码,它返回空。有人可以建议吗?

  add($event) {
    $event.confirm.resolve($event.newData);
    this.source.getAll().then((data) => console.log(data));
  }

1 个答案:

答案 0 :(得分:1)

试试这个!

    let data = [];
    this.source.getAll().then(value => { 
        value.forEach(element => {
            data.push(element); 
        });;
    });