Multiple fetch() with one signal in order to abort them all
问题 I saw this other answer: https://stackoverflow.com/a/47250621/2809729 So can I abort multiple fetch request using just one signal? 回答1: At the time I was writing the question, I already found the solution in this post on how to abort fetches from one of the pioneers that were working to the implementation of an abort. So yes you can :) Here a brief example: async function fetchStory({ signal }={}) { const storyResponse = await fetch('/story.json', { signal }); const data = await storyResponse