Skip to content

Instantly share code, notes, and snippets.

@stuf
Last active February 25, 2021 14:02
Show Gist options
  • Save stuf/72e775faaa4b7841703861bd42a734c1 to your computer and use it in GitHub Desktop.
Save stuf/72e775faaa4b7841703861bd42a734c1 to your computer and use it in GitHub Desktop.
API call Promise
API call Promise
Pending
on data -> Fulfilled
on error -> Rejected
canceled -> Rejected
Fulfilled
done -> Finally
Rejected
done -> Finally
Finally
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`The current state is: ${current_state_name}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment