为什么服务器端操作是按顺序执行的,而不是与Next中的SWR并行执行。JS14?

问题描述 投票:0回答:0

在我的客户端组件中,我使用SWR获取数据:

"use client";

import React from 'react';
import { getData1, getData2 } from '@/bsky/actions';
import useSWR from 'swr';

const fetch1 = async () => {
    console.log("getData1 cs start", new Date().toString());
    await getData1();
    console.log("getData1 cs end", new Date().toString());
    return "success";
};

const fetch2 = async () => {
    console.log("getData2 cs start", new Date().toString());
    await getData2();
    console.log("getData2 cs end", new Date().toString());
    return "success";
};

const Test: React.FC = () => {
  const { data: data1 } = useSWR("fetch1", fetch1);
  const { data: data2 } = useSWR("fetch2", fetch2);

  return (
    <div className="min-h-screen p-6 max-w-8xl mx-auto">
        <div className='flex flex-col space-y-6'>
            {data1 && <div>Got data 1</div>}
            {data2 && <div>Got data 2</div>}
        </div>
    </div>
  );
};

export default Test;

预期的行为:

两个服务器端操作(
getData1

getData2

)应并行执行,因为它们是在客户端组件中同时启动的。

实际行为:
函数
fetch1

fetch2

同时启动,但是直到完成后才开始执行。输出日志显示以下序列:

getData2
问题:
为什么服务器端操作(
getData1

client: getData1 cs start Mon Jan 27 2025 20:01:11 GMT+0100 client: getData2 cs start Mon Jan 27 2025 20:01:11 GMT+0100 server: getData1 start Mon Jan 27 2025 20:01:12 GMT+0100 server: getData1 end Mon Jan 27 2025 20:01:17 GMT+0100 client: getData1 cs end Mon Jan 27 2025 20:01:17 GMT+0100 server: getData2 start Mon Jan 27 2025 20:01:17 GMT+0100 server: getData2 end Mon Jan 27 2025 20:01:22 GMT+0100 client: getData2 cs end Mon Jan 27 2025 20:01:22 GMT+0100
)是按顺序执行的,而不是并行执行?
如何修改此设置,以确保按预期并行运行的操作?

    additional上下文:
  1. 我使用next.js 14与服务器端操作和swr.
    动作都涉及使用
    getData1
  2. 的模拟5秒延迟。
  3. 任何见解或解决方案都将不胜感激!

  • 测试体是正常功能。它调用在fetch1上使用wrw,然后在fetch2上使用。 getData1和getData2是旨在顺序运行的React服务器操作。因此,一旦getData1排队,它将阻止所有其他服务器操作,直到完成为止,然后将派遣下一个服务器。
  • 如果您想并行拨打电话,则可以使用usewr进行操作,但是您必须提出“正常”的获取风格请求。您不能同行使用服务器操作。
  • 
    
typescript asynchronous next.js server-side use-swr
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.