diff --git a/releases/next/docs/network.html b/releases/next/docs/network.html index db194bc8b50..db0439f476c 100644 --- a/releases/next/docs/network.html +++ b/releases/next/docs/network.html @@ -8,7 +8,7 @@ firstParam: 'yourValue', secondParam: 'yourOtherValue', }) -})
Take a look at the Fetch Request docs for a full list of properties.
The above examples show how you can make a request. In many cases, you will want to do something with the response.
Networking is an inherently asynchronous operation. Fetch methods will return a Promise that make it straightforward to write code that works in an asynchronous manner:
Take a look at the Fetch Request docs for a full list of properties.
The above examples show how you can make a request. In many cases, you will want to do something with the response.
Networking is an inherently asynchronous operation. Fetch methods will return a Promise that makes it straightforward to write code that works in an asynchronous manner: