Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ability to change the way array param are sendt #26

Closed
thorep opened this issue Dec 22, 2022 · 1 comment
Closed

Ability to change the way array param are sendt #26

thorep opened this issue Dec 22, 2022 · 1 comment

Comments

@thorep
Copy link

thorep commented Dec 22, 2022

The request url when arrays are used is now formed like this ?var1[]=test,var1[]=test2

Is there a way to tell rapini to do it without the [] ?

@rametta
Copy link
Owner

rametta commented Dec 22, 2022

Hi @thorep , yes there is, when you initialize you can pass a callback to format arrays. Example:

const { queries, mutations, requests, queryIds } = initialize(axios, {
  axios: {
    paramsSerializer: params => qs.stringify(params, { arrayFormat: 'repeat' })
  }
})

this example uses the qs library, but you can import any library you want serialize or even just write your own version. Hope that helps

@rametta rametta closed this as completed Dec 22, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants