We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Standard URL syntax for arrays is to duplicate the key name:
?key=value1&key=value2
in a request object (i.e., in java) would result in an array: [value1,value2].
circuits should allow JavaScript arrays to be passed as a query param in the params map, and convert them in to the duplicated syntax above.
e.g.,: params = { key: ["value1", "value2"] };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Standard URL syntax for arrays is to duplicate the key name:
?key=value1&key=value2
in a request object (i.e., in java) would result in an array: [value1,value2].
circuits should allow JavaScript arrays to be passed as a query param in the params map, and convert them in to the duplicated syntax above.
e.g.,: params = {
key: ["value1", "value2"]
};
The text was updated successfully, but these errors were encountered: