角度-从一个函数到另一个函数的值

时间:2019-06-17 10:28:13

标签: javascript angular typescript

我不擅长TypeScript-现在我将它放在受支持的Web应用程序的前面。

我不需要什么帮助。 我需要获取功能changeSort的值并将其放入getPage 但是不像这样的getPage(sort,column)。

public getPage() {
    if ( this.pageSubscription ) this.pageSubscription.unsubscribe();
    const args = {
      per: this.per || 100,
      json_filter: JSON.stringify( this.filter ),
      sort: 'created_at',
      order: 'desc'
    };
    if ( this.search ) {
      args['search'] = this.search;
    }
    this.pageSubscription = this.service
      .getPage( this.page, args )
      .subscribe( res => (  this.results = { 
        total: res.total,  list: orderBy(res.list, this.columns.map(column=> column.key), this.columns.map(column=> column.value.sort))
      }))
  }



  public changeSort(sort, column){
    console.log(sort,column)
  }

从社区获得一些帮助真是太棒了!

0 个答案:

没有答案