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

encode: false doesn't work in custom axios param serialiser #1932

Open
mrleblanc101 opened this issue Jul 23, 2024 · 0 comments
Open

encode: false doesn't work in custom axios param serialiser #1932

mrleblanc101 opened this issue Jul 23, 2024 · 0 comments

Comments

@mrleblanc101
Copy link

Version:

  • @inertiajs/vue3 version: 1.2.0

Describe the problem:

I followed the exemple in #282.
My query ?sort=client.name%2Casc should be ?sort=client.name,asc.
This works in vue-router/nuxt using the same qs package params.

Steps to reproduce:

axios.interceptors.request.use(
    function (config) {
        let url = new URL(config.url);
        url.search = qs.stringify(qs.parse(url.search, { ignoreQueryPrefix: true }), {
            encode: false,
            skipNulls: true,
            arrayFormat: 'comma',
            commaRoundTrip: true,
        });
        config.url = url.href;
        return config;
    },
    function (error) {
        return Promise.reject(error);
    },
);
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

1 participant