-
Notifications
You must be signed in to change notification settings - Fork 476
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
Update search/query instead of add #64
Comments
I'm using this as a workaround, but it would be nice if there was an exposed function for something like this
|
you could always use the wuery map: var data = uri.query(true);
data.foo = "baz";
uri.query(data); I see how that is inconvenient, though… without having the matter thought through, accepting a callback function would be nice: uri.query(function(data) {
data.foo = "bar";
}); |
I overlooked the
The callback would be nice to have as well, although I think a compliment to addQuery/removeQuery would be best. |
Thanks |
I've been trying to find a way to update an existing search argument if it exists, or have it added if it doesn't exist.
Something like:
Is this possible with the current API? It seems addSearch will only append another argument, for example:
The text was updated successfully, but these errors were encountered: