ก่อนอื่น ฉันเสียใจเป็นอย่างยิ่งหากสิ่งนี้ได้รับการตอบกลับแล้ว นี่เป็นคำถามที่ฉันคิดไม่ตก และดูเหมือนจะหาทางออกที่เหมาะสมไม่ได้
สิ่งที่ฉันพยายามทำคือดึงข้อมูลจากฐานข้อมูลของฉันโดยใช้ ของตัวควบคุม Laravel และส่งข้อมูลนี้ไปยังส่วนประกอบ React ของฉัน
ตัวอย่างเช่น ฉันมีตารางที่เต็มไปด้วยภาพยนตร์ ในตัวควบคุมของฉัน ฉันดึงข้อมูลภาพยนตร์เหล่านี้ทั้งหมดโดยใช้:
public function getMovies()
{
return Movie::select(\'id\', \'name\', \'description\', \'image\')->get();
}
จากนั้น ฉันต้องการส่ง รายชื่อภาพยนตร์นี้ไปยังส่วนประกอบ React ของฉัน ซึ่งฉันต้องการดูแต่ละส่วนเพื่อแสดงทั้งหมด เราจะทำอย่างไร
ขออภัยสำหรับคำถามนี้ ฉันเพิ่งเริ่มเรียนรู้วิธีทำงานกับ React เพื่อทำงานในโครงการ
ขั้นแรกให้เปลี่ยน :
public function getMovies()
{
return Movie::select(\'id\', \'name\', \'description\', \'image\')->get();
}
ถึง :
public function getMovies()
{
$movies = Movie::all();
return (\'yourview\', compact([\'movies\']));
}
จากนั้น ในมุมมองใบมีดของคุณ เพียงใช้
@foreach ($movies as $movie)
<p>{{ $movies->name }}</p>
<p>{{ $movies->description }}</p>
<p>{{ $movies->image }}</p>
@endforeach
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.
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/
React is currently the leader in JavaScript UI frameworks. First, the Facebook developers started working on this to make their job easier. An app called Facebook Ads grew very quickly, which meant complex management and support. As a result, the team began to create a structure that would help them with efficiency. They had an early prototype before 2011, and two years later, the framework was open source and available to the public. It is currently used by many business giants: AirBNB, PayPal, Netflix, etc.
https://reactjs.org/
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.