How are we meant to handle path parameters in Angular 2 when doing RESTful calls to a Web Service?
I've found the URLSearchParams
object for query parameters but from what I have found it seems we'll have to make do with string-concatenation for the path itself. Like
let url = 'api/v1/something/' + encodeURIComponent(someParameter) +
'/etc/' + encodeURIComponent(anotherParam) + '/and/so/on';
Is there, included in angular2, something that does similar to:
let url = new URL('api/v1/something/{id}/etc/{name}/and/so/on', param1, param2);
I can of course create something similar myself but prefer if there is something included in angular2.
Indeed, you can use string interpolation and nearly exactly the same thing you suggest, assuming
id
andname
are already set and encoded.I'll note that currently the ES6 URL class only supports
searchParams
, but has no notion of path parameters.Also, I know of no method that will automatically encode your parameters without implementing your own
QueryEncoder
withURLSearchParams
If anybody is interested, this is what I ended up doing:
How to use: