Re: [fetch] Document usage for GET requests with URI parameters (#56)

Example could be something like:

```js
var url = new URL("http://example.org/api"),
     params = { first: "x", second: "y" }
Object.keys(params).forEach((key, value) => { url.searchParams.append(key, value) })
fetch(url).then(/* ... */)
```

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/56#issuecomment-111063157

Received on Thursday, 11 June 2015 09:32:20 UTC