This is how I access the result from a fetch call:let data;fetch(someUri) .then((response) => response.json()) .then(_data => { data = _data; } ...
確定! 回上一頁