gpt4 book ai didi

php - 自动注入(inject)的 Laravel 模型没有属性

转载 作者:可可西里 更新时间:2023-10-31 23:27:58 25 4
gpt4 key购买 nike

我是 Laravel 的新手。我已经为我的一个表创建了一个模型、一个资源 Controller 和一个路由,我修改了模型类以使用特定的表名,但是 Laravel 5.4 注入(inject)的模型对象没有属性,即使相应的记录存在于数据库。这是我采取的步骤。

1) 使用 artisan 创建模型。我运行了这个命令:

php artisan make:model Tree

2) 修改树模型类为instructed指定一个特定的表。我必须这样做,因为我的表被命名为 tree,而不是 Laravel 根据其内部规则假设的“树”。

/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'tree';

3) 通过此命令创建一个使用我的模型的资源 Controller

php artisan make:controller CategoryController --resource --model=Tree

4) 添加资源路由 routes/web.php 以便将 Web 服务器路径映射到 Controller 上:

Route::resource('categories', 'CategoryController');

5) 修改CategoryController 的show() 方法来var_dump 注入(inject)的$tree 对象。它看起来像这样:

/**
* Display the specified resource.
*
* @param \App\Tree $tree
* @return \Illuminate\Http\Response
*/
public function show(Tree $tree)
{
// we need to display the children of $tree
var_dump($tree);

}

6) 我的表结构遵循所有约定specified通过 Laravel 文档。有一个整数 id 列,它是无符号且自动递增的。我有 created_at 和 updated_at 时间戳。唯一不同的是表名是“tree”而不是“trees”,但这应该包含在我上面所做的更改中:

CREATE TABLE IF NOT EXISTS `tree` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned DEFAULT NULL,
`label` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`display_order` int(11) unsigned NOT NULL DEFAULT '0',
`forum_id` int(5) NOT NULL DEFAULT '0',
`url` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`flavor` tinyint(4) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `parent_pkey` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

此表包含数据。它肯定有一个 id=1 的记录。

7) 我访问了应该激活我的资源 Controller 的 show() 方法的 url。我得到的输出证实这实际上是方法 CategoryController::show()。 http://example.com/categories/1

问题来了

var_dump($tree) 的输出没有属性。没有错误,但是注入(inject)的对象有问题

object(App\Tree)#217 (24) {
["table":protected]=>
string(4) "tree"
["connection":protected]=>
NULL
["primaryKey":protected]=>
string(2) "id"
["keyType":protected]=>
string(3) "int"
["incrementing"]=>
bool(true)
["with":protected]=>
array(0) {
}
["perPage":protected]=>
int(15)
["exists"]=>
bool(false)
["wasRecentlyCreated"]=>
bool(false)
["attributes":protected]=>
array(0) {
}
["original":protected]=>
array(0) {
}
["casts":protected]=>
array(0) {
}
["dates":protected]=>
array(0) {
}
["dateFormat":protected]=>
NULL
["appends":protected]=>
array(0) {
}
["events":protected]=>
array(0) {
}
["observables":protected]=>
array(0) {
}
["relations":protected]=>
array(0) {
}
["touches":protected]=>
array(0) {
}
["timestamps"]=>
bool(true)
["hidden":protected]=>
array(0) {
}
["visible":protected]=>
array(0) {
}
["fillable":protected]=>
array(0) {
}
["guarded":protected]=>
array(1) {
[0]=>
string(1) "*"
}
}

我做错了什么吗?如何让 Laravel 注入(inject)正​​确的对象?

编辑:有人问我为什么要在我的 route 注入(inject)错误的对象。这是在步骤 #3 中自动生成的类的缩写版本。它清楚地引用了 Tree 类和代码提示,它需要一个树对象。除了 var_dump 语句之外,我没有创建任何此代码。这一切都是按照文档的指示由 artisan 命令自动生成的。

namespace App\Http\Controllers;

use App\Tree;
use Illuminate\Http\Request;

class CategoryController extends Controller
{

/**
* Display the specified resource.
*
* @param \App\Tree $tree
* @return \Illuminate\Http\Response
*/
public function show(Tree $tree)
{
// we need to display the children of $tree
var_dump($tree);

}

}

最佳答案

路由模型绑定(bind)有一个命名约定。

尝试将操作调用更改为此:

public function show(Tree $category)
{
var_dump($category);
}

更新:我查看了源代码,您还可以更改资源路由声明中的参数名称:

Route::resource('categories', 'CategoryController', ['parameters'=>['categories'=>'tree']]);

并在 Action 调用中使用 $tree 变量

public function show(Tree $tree)

关于php - 自动注入(inject)的 Laravel 模型没有属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42543124/

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