因此,React 18 诞生了 RSC。我想知道它与 NextJS 中的 SSR 有何不同。
let groupedWishlistProducts;
(async function () {
groupedWishlistProducts = await fetchGroupedWishlistProducts();
console.log(groupedWishlistProducts); // logs returned value properly
})();
console.log(groupedWishlistProducts); // logs undefined
Run Code Online (Sandbox Code Playgroud)
为什么groupedWishlistProducts在全局范围内未定义,即使我已经在全局范围内初始化?