You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the app sends queryParams that is type: 'array'.
For example: b = [ 1 , 2 , 3 ]
In jquery ajax settings when traditional = true -> b=1&b=2&b=3
In jquery ajax settings when traditional = false -> b[]=1&b[]=2&b[]=3
In ember-fetch, there is no option traditional = true, always send params with []
Is there an option that I am missing ?
The text was updated successfully, but these errors were encountered:
Migrating from jquery ajax to ember-fetch:
When the app sends queryParams that is type: 'array'.
For example: b = [ 1 , 2 , 3 ]
In jquery ajax settings when traditional = true -> b=1&b=2&b=3
In jquery ajax settings when traditional = false -> b[]=1&b[]=2&b[]=3
In ember-fetch, there is no option traditional = true, always send params with []
Is there an option that I am missing ?
The text was updated successfully, but these errors were encountered: