gpt4 book ai didi

laravel - 如何在 `only` 中使用 apiReources 方法?

转载 作者:行者123 更新时间:2023-12-03 16:02:16 26 4
gpt4 key购买 nike

我正在使用 Laravel 创建一个 api,我正在寻找一种简单的懒惰方式来注册 Api 资源。
我目前正在像这样定义我的路线:

Route::apiResource('categories', 'CategoryController')->only(['index', 'show']);
我查了 Laravel's controller documentation我看到了 apiResources我可以一次创建多个api资源的方法。
目标:
就是能用 apiResourcesonly像这样的方法
Route::apiResources(['categories' => 'CategoryController', 'products' => 'ProductController'])->only(['index', 'show']);
当前结果:

Call to a member function only() on null

最佳答案

长话短说(如果您不想阅读整个故事),您可以这样做:

Route::apiResources(['brands' => 'BrandController', 'categories' => 'CategoryController'], ['only' => ['index', 'show']]);

当我写这个问题的时候,我想到了检查 apiResources声明,我发现了这个:
   /**
* Register an array of API resource controllers.
*
* @param array $resources
* @param array $options
* @return void
*/
public function apiResources(array $resources, array $options = [])
{
foreach ($resources as $name => $controller) {
$this->apiResource($name, $controller, $options);
}
}

并且因为它正在使用 apiResource在引擎盖下,它正在传递选项参数我可以检查这些选项是什么
/**
* Route an API resource to a controller.
*
* @param string $name
* @param string $controller
* @param array $options
* @return \Illuminate\Routing\PendingResourceRegistration
*/
public function apiResource($name, $controller, array $options = [])
{
$only = ['index', 'show', 'store', 'update', 'destroy'];

if (isset($options['except'])) {
$only = array_diff($only, (array) $options['except']);
}

return $this->resource($name, $controller, array_merge([
'only' => $only,
], $options));
}

关于laravel - 如何在 `only` 中使用 apiReources 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62099850/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com