ฉันกำลังทำงานในสองโครงการ โครงการ Laravel 8 และโครงการ Laravel Lumen 8 ซึ่งทั้งสองโครงการใช้ Guzzle เพื่อสร้างคำขอ HTTP พวกเขากำลังทำงานบนโดเมนต่อไปนี้:
และฉันใช้ MAMP Pro (Apache และ MySQL)
โปรเจ็กต์ Laravel 8 ของฉันสร้างคำขอ HTTP ไปยังโปรเจ็กต์ Lumen ของฉัน ซึ่งส่งคำขอ HTTP กลับไปยังโปรเจ็กต์ Laravel 8 ของฉัน ปัญหาที่ฉันพบคือคำขอแรกจากโปรเจ็กต์ Laravel ของฉันหมดเวลาเสมอ จากนั้นคำขอจึงเริ่มต้นจากโปรเจ็กต์ Lumen
นี่ไม่ใช่สิ่งที่ฉันต้องการ ฉันต้องการคำขอแรกเพื่อเริ่มคำขอในโครงการ Lumen ของฉันทันที และให้คำขอตอบกลับไปยังคำขอแรก
ฉันพลาดอะไรไป โครงสร้างคำขอ HTTP ของฉันอนุญาตให้สิ่งนี้เกิดขึ้นหรือไม่ ฉันได้ลองใช้เซสชันใน db เพราะฉันคิดว่าอาจเป็นการบล็อกเซสชันหรือจัดคิวคำขอ:
คำขอของโครงการ Laravel 8 (อันดับแรก)< /p>
/**
* Route the microservice
*
* @param \\Illuminate\\Http\\Request $request
* @return \\Illuminate\\Http\\Response
*/
public function microservice(Request $request, $service)
{
Log::debug("HUB Microservice");
// TODO: this is always timing out regardless of what timeout I set
// seems to only start the Lumen request when this finishes but I need
// the response from the Lumen\'s request to be here
$response = Http::timeout(20)->get(\'http://localhost:8001/api/reports\');
// the response from the microservice on the Lumen project
return response()->json($response->json(), $response->status());
}
คำขอของโครงการ Laravel Lumen 8 (อย่างที่สอง ต้องส่งคืน ตอบกลับไปที่อันแรก)
<?php
namespace App\\Http\\Middleware;
use Closure;
use GuzzleHttp\\Client;
class BeforeMiddleware
{
/**
* Handle an incoming request.
*
* @param \\Illuminate\\Http\\Request $request
* @param \\Closure $next
* @return mixed
*/
public function handle($request, Closure $next, $ability)
{
$client = new Client([
\'base_uri\' => \'http://localhost:8000\',
\'timeout\' => 60
]);
// TODO: this request only ever starts when my Laravel (first) request
// times out, is it domain related?
$res = $client->request(\'POST\', \'/api/hub/login\', [
\'form_params\' => [
\'key\' => \'value\'
]
]);
// Post-Middleware Action
return $next($request);
}
}
ฉันพลาดอะไรไป
ฉันใช้ Laragon (nginx) เพื่อการพัฒนาในท้องถิ่น
ฉันแก้ไขโดยเพิ่ม Upstream จาก 2 เป็น 5
\ nสามารถเพิ่มได้ในไฟล์นี้:C:\\laragon\\usr\\laragon.ini
เป็นเพราะการกำหนดค่าเซิร์ฟเวอร์ของคุณ บน windows php-cgi ไม่สามารถจัดการการเชื่อมต่อหลายรายการพร้อมกันได้ ดังนั้นก่อนที่จะเริ่มสคริปต์ที่สอง php-cgi.exe จะรอจนกว่าสคริปต์แรกจะสิ้นสุด
คุณสามารถใช้ build-in php server (php -S
) ซึ่ง ให้คุณจัดการกับการเชื่อมต่อกับ8000
และ8001
แยกกัน
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
Laravel is a free open source PHP framework that came out in 2011. Since then, it has been able to become the framework of choice for web developers. One of the main reasons for this is that Laravel makes it easier, faster, and safer to develop complex web applications than any other framework.
https://laravel.com/
DBMS is a database management system. It is designed to change, search, add and delete information in the database. There are many DBMSs designed for similar purposes with different features. One of the most popular is MySQL.
It is a software tool designed to work with relational SQL databases. It is easy to learn even for site owners who are not professional programmers or administrators. MySQL DBMS also allows you to export and import data, which is convenient when moving large amounts of information.
https://www.mysql.com/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.