Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

extract url parsing / composing into reusable service #738

Closed
vojtajina opened this issue Jan 29, 2012 · 31 comments
Closed

extract url parsing / composing into reusable service #738

vojtajina opened this issue Jan 29, 2012 · 31 comments

Comments

@vojtajina
Copy link
Contributor

something like this:

compose(/path/:verb, {verb:'greet', salutation:'Hello'});
// results in URL /path/greet?salutation=Hello

$route does similar (reverse) stuff when parsing an url into params...

@witoldsz
Copy link

+1 :)

@m6w6
Copy link

m6w6 commented Jul 9, 2012

+1

2 similar comments
@niklasbulitta
Copy link

+1

@bsr203
Copy link

bsr203 commented Oct 6, 2012

+1

@iwein
Copy link
Contributor

iwein commented Nov 12, 2012

This is a nice idea, would it be a good idea to expose this service on $location and also allow parsing of url strings without actually changing the location (if you pull one from an iframe for example)?

@georgiosd
Copy link

+1

1 similar comment
@dmitryevseev
Copy link

+1

@tanepiper
Copy link

+1 would love to see something as powerful as http://medialize.github.com/URI.js/ rolled into $location

@snichme
Copy link

snichme commented Mar 27, 2013

+1

1 similar comment
@brettlaforge
Copy link

+1

@coli
Copy link

coli commented Apr 29, 2013

+1, one of my template needs this right now to massage some urls

@Leksyk
Copy link

Leksyk commented May 17, 2013

+1

@eyelidlessness
Copy link

+1

@pahlers
Copy link

pahlers commented Sep 5, 2013

I would like to have this. It can't be difficult to implement. $resource has the same system (Route.setUrlParams).

@pahlers
Copy link

pahlers commented Sep 16, 2013

Made some code to solve this problem. It would be better when this was native angular code.

https://github.com/eonlepapillon/parametrizedLocation

@ralphschindler
Copy link

👍

1 similar comment
@celmaun
Copy link

celmaun commented Dec 19, 2013

+1

@bsr203
Copy link

bsr203 commented Dec 22, 2013

I have been using https://github.com/fxa/uritemplate-js
uses like,
template = UriTemplate.parse('{?query*})'; template.expand({query: {first: 1, second: 2}}); --> "?first=1&second=2"

it is based on RFC6570

Another popular one is https://github.com/medialize/URI.js
better docs, and option http://medialize.github.io/URI.js/

the only issue is the RFC uses {id} format, and angular :id. That's actually ok, depends on how you represent your string url. You can use it in route registration too like

$routeProvider .when(UriTemplate.parse('/path/{verb}).parse({}) ...
`

@gauravmeena0708
Copy link

+1

@sodacrackers
Copy link

1+

@IgorMinar IgorMinar modified the milestones: Backlog, 1.3.0 Sep 30, 2014
@johncrim
Copy link

johncrim commented Nov 8, 2015

+1

URL is not a standard javascript class, so this really should be a core angular service, to avoid many duplicates of similar logic.

@STOpandthink
Copy link

+1

1 similar comment
@tools4origins
Copy link

+1

@andy-rush
Copy link

+1. Or more.

@chetankhilosiya
Copy link

+1
The valid use case I have is, I need to check the length of url generated for GET request before making request, as some urls generated are too long due to request params has list that grows big.

@pashchuk
Copy link

Is there any progress on this one?

@panlina
Copy link

panlina commented Mar 5, 2018

+1

@petebacondarwin
Copy link
Contributor

OK, so we have agreed to expose the setUrlParams function as a service on the ngResource module. We do not want to add it to the core AngularJS module as it would add unnecessary code to that file.

petebacondarwin added a commit to petebacondarwin/angular.js that referenced this issue Mar 7, 2018
This service exposes the underlying helper that `$resource` uses
to compose resource request URLs.

The behaviour of the composition has not changed although there is one
minor internal refactoring: previously additional parameters were passed
through to the `$http` service to be serialized and added to the URL at
a later stage. Now these parameters are added in place - using the
`$httpParamSerializer` in case it has been replaced or decorated.

Closes angular#738
@Narretz
Copy link
Contributor

Narretz commented Jul 4, 2018

We've decided not to add this after all, as only a small number of people would benefit from the option to manipulate url params in resource. And we don't want to expose a general url composition service in AngularJS as core should cater specifically to the needs of the framework.

@petebacondarwin
Copy link
Contributor

@gilbsgilbs - since we are entering LTS mode the code for manipulating the URLs internally in AngularJS is not going to change (or at least it is very very unlikely to change). So it is pretty easy and safe to copy the code from angular-resource.js and reuse it in your own applications.

@gilbsgilbs
Copy link

@petebacondarwin that's a neat suggestion. Thank you very much. I will opt for this (and I totally understand the decision).

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.