कोड को साफ-सुथरा बनाने के लिए। यह कई मापदंडों को संभालेगा।
onFilterReceived(para: any, type: string) {
let body:any = {};
body['services.workflow.status'] = 'consulting';
if (type == 'lan')
body['languages.primary'] = { $in: para };
if (type == 'nat')
body['services.service'] = { $in: para };
this.filtersService.getByFilter(this.page, this.pagesize, body)
.subscribe(resRecordsData => {
this.records = resRecordsData;
},
responseRecordsError => this.errorMsg = responseRecordsError
);
}
टेम्पलेट में:
<list [records]="records"
(sendLanguage)="onFilterReceived($event, 'lan')"
(sendNationality)="onFilterReceived($event, 'nat')">
</list>