I am trying to pass parameters to a route, but only show the first parameter.
Example:
var params = {
'debtorIds': this.debtorIds,
'debtor_id': dbtr_id
};
this.router.navigateToRoute('customer', params);
What I want to be able to do is tell the route to only display the debtor_id
param, and not the debtorIds
param, because that one is an array of possibly thousands of ids.
Is this possible to do with aurelia’s router?