This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat: $location.seach() should support semicolon (;
) as an alternative delimiter to (ampersand) &
#6140
Milestone
Comments
What happens if you have a URL like I've written a naive implementation which just splits by both I guess hopefully, you don't end up with weird urls like that |
caitp
added a commit
to caitp/angular.js
that referenced
this issue
Feb 7, 2014
In accordance with recomendation in http://www.w3.org/TR/1999/REC-html401-19991224/appendix/notes.html#h-B.2.2, the query parameters should support encoding and decoding using & or ; as a delimiter. Angular will consistently encode search queries using either '&' or ';' as the delimiter, with '&' being the default. This can be configured like so: ```js $locationProvider.queryDelimiter(';'); // any other value will be treated as '&' ``` Closes angular#6140
Some APIs use semicolons within a QS parameter. e.g. stackexchange uses semicolons to seperate tags: http://api.stackexchange.com/2.1/search?order=desc&sort=activity&tagged=c%23;javascript&site=stackoverflow |
khepin
pushed a commit
to khepin/angular.js
that referenced
this issue
Feb 19, 2014
According to RFC (http://www.w3.org/TR/1999/REC-html401-19991224/appendix/notes.html#h-B.2.2) location should match either ';' OR '&', but not both at the same time. Closes angular#6140
khepin
pushed a commit
to khepin/angular.js
that referenced
this issue
Feb 19, 2014
According to RFC (http://www.w3.org/TR/1999/REC-html401-19991224/appendix/notes.html#h-B.2.2) location should match either ';' OR '&', but not both at the same time. Closes angular#6140
4 tasks
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
per RFC $location should parse both of these as equivalent
since we also need to be able to serialize the params with some separator, we should make the separator configurable (with
&
being the default)The text was updated successfully, but these errors were encountered: