簡體   English   中英

如何使用 InertiaJS 從控制器返回數據

[英]How to return data from the controller using InertiaJS

這是我的產品控制器

public function index()
{
  return Product::all();
}

我正在尋找一種方法將此方法從慣性請求返回到我的 Vue 組件,這是我嘗試過的方法,

路線/web.php

Route::get('/', function () {
  return Inertia::render('App', [ProductController::class, 'index']);
});

這是我的 Vue 組件(與我嘗試獲取數據的方式不同)

<template>

</template>

<script>
props: {
  index: Array,
},
</script>

在您的控制器中,您可以將產品列表傳遞給您的組件:

public function index()
{
  return Inertia::render('App', [
    'products' => Product::all()
  ]);
}

文檔: https ://inertiajs.com/responses

然后像這樣聲明你的路線:

Route::get('/products', [ProductController::class, 'index']);

這將創建一個/products路由,該路由將指向您的控制器的 index 操作,該操作會將產品列表返回給您的組件。

在您的組件中,您可以訪問產品:

<template>
  <div>
    {{ products.length }}
  </div>
</template>

<script>
props: {
  products: Array,
},
</script>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM