I have 2 questions to ask, regarding generators, since I am just learing this feature.
- Not sure, what is wrong in the below implementation. I was expenting the output to be
{
"userId": 1,
"id": 1,
"title": "delectus aut autem",
"completed": false
}
CODE :
function *generator(){
const res = yield fetch('https://jsonplaceholder.typicode.com/todos/1');
const response = yield res.json();
}
let g = generator();
g.next();
//PRINTS
> {value: Promise, done: false} //why the value here is Promise, I was expecting the json object
Please help me in understanding, what is wrong in the above code.
- My second question is, I am not understanding, or getting idea about the use cases of the generator, I mean, where we can use this kind of pausable functions in real projects.
You have to wait for the fetch to resolve first, you can do that with .then() or making the generator async and awaiting the fetch. Although, that wouldn't be much of use nowadays. Before async/await or even promises, people used generators like you would use async/await today with something like a co wrap, which was based on callbacks.
As for today's use of them, you can find them in libs such as
redux-saga
, but they were mostly replaced by async/await and promises, which are much more lightweight and easier to reason about.