首先,我确保为我在这里讨论的问题编写一个快速演示https://codesandbox.io/s/exciting-swirles-7cs3s
但本质上,使用该isomorphic-fetch
库,我遇到了一个问题,我无法真正获得函数的价值,或者你可能会说,分辨率fetch()
。
import fetch from "isomorphic-fetch";
async function test() {
return await fetch("https://google.com", { mode: "no-cors" });
}
let t = test();
console.log(t);
结果是
现在我也考虑过fetch()
像这样使用的另一种方式
fetch("https://google.com", { mode: "no-cors" })
.then(response => response.text())
.then(data => console.log(data));
它实际上提供了一个字符串,但如果可能的话,我更喜欢第一种方式?我也很可能没有正确使用 fetch 。