ホームページ  >  記事  >  バックエンド開発  >  HTTPリクエストを使用したLaravelの複数のAPI

HTTPリクエストを使用したLaravelの複数のAPI

WBOY
WBOYオリジナル
2024-08-18 06:45:02934ブラウズ

今日は、Laravel で複数の API を呼び出す方法を皆さんに共有します
クライアントから複数の API (vue、react、js など) を呼び出すことができるようになりました。 Promise.all([...]) を使用すると、複数の Promise

が返されます。

分かった、行きましょう

最初に、プロジェクト Laravel 11 をインストールできます

2 番目は、web.php またはコントローラー、サービスなどで設定できます。

例: web.php ファイルにコードを書き、テストを手伝います

use Illuminate\Support\Facades\Http;
use GuzzleHttp\Promise\Utils;
use GuzzleHttp\Exception\ConnectException;
use Illuminate\Http\Client\Pool;

Route::get('multiple-request', function() {
    $responses = Utils::all([
        'foo' => Http::async()->get('https://jsonplaceholder.typicode.com/todos/1')->then(function ($response) {
            // you can check data, after then return it
            return $response;
        }),
        'bar' => Http::async()->get('https://jsonplaceholder.typicode.com/todos/2')->then(function ($response) {
             // you can check data, after then return it
            return $response;
        }),
        'baz' => Http::async()->get('https://jsonplaceholder.typicode.com/todos/3')->then(function ($response) {
            // you can check data, after then return it
            return $response;
        }),
    ])->wait();

    // you need check data here
    $fooOk = $responses['foo']->ok();
    $barSuccessful = $responses['bar']->successful();
    $connectionFailed = $responses['baz'] instanceof ConnectException;

    return [
        'foo' => $responses['foo']->ok() ? $responses['foo']->json() : 'Request to foo failed',
        'bar' => $responses['bar']->successful() ? $responses['bar']->json() : 'Request to bar failed',
        'baz' => $responses['baz']->ok() ? $responses['baz']->json() : 'Request to baz failed',
    ];
});

URL : http://127.0.0.1/multiple-request をリクエストすると、データが返されます

Multiple API in Laravel with HTTP Requests

わかりました。または、 Http::pool を使用して API をリクエストすることもできます

Route::get('multiple-request-using-pool', function() {

        $responses = Http::pool(fn (Pool $pool) => [
            $pool->get('https://jsonplaceholder.typicode.com/todos/1'),
            $pool->get('https://jsonplaceholder.typicode.com/todos/2'),
            $pool->get('https://jsonplaceholder.typicode.com/todos/3'),
        ]);

        $responses[0]->ok();
        $responses[1]->successful();
        // Kiểm tra và lấy nội dung từ các phản hồi
        $data = [
            'todo_1' => $responses[0]->ok() ? $responses[0]->json() : 'Request to todo 1 failed',
            'todo_2' => $responses[1]->successful() ? $responses[1]->json() : 'Request to todo 2 failed',
            'todo_3' => $responses[2]->ok() ? $responses[2]->json() : 'Request to todo 3 failed',
        ];

        return response()->json($data);

});

戻りデータ:

Multiple API in Laravel with HTTP Requests

記事: HTTP リクエストを使用した Laravel の複数の API

以上がHTTPリクエストを使用したLaravelの複数のAPIの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。