Closed MayGo closed 7 years ago
@MayGo Nice. We can add this to the endpoint configuration. Would you like to submit a PR?
yes, i will try.
duplicate #175 not released yet
@MayGo This is part of another issue we're working on. Publishing has to hold until we fix the babel issue. Shouldn't be too long now :)
Problem:
Makes query
?mylist[]=one&mylist[]=two&mylist[]=three
.but is needed query
?mylist=one&mylist=two&mylist=three
.aurelia-api uses aurelia-path function buildQueryString(params, traditional), that makes query the way it is needed when traditional = true.
Needed feature:
Provide a way to configure buildQueryString-s traditional parameter.