我不擅长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)
}
从社区获得一些帮助真是太棒了!