Laravel:BadMethodCallException方法[find]不存在

时间:2014-04-05 14:46:35

标签: php laravel laravel-4

尝试使用模型对象User从数据库中提取某些值时出现以下错误:BadMethodCallException Method [find] does not exist

以下是我的文件: 模型用户

<?php

use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;

class User extends Eloquent implements UserInterface, RemindableInterface {

    /**
     * The database table used by the model.
     *
     * @var string
     */
    protected $table = 'users';

    /**
     * The attributes excluded from the model's JSON form.
     *
     * @var array
     */
    protected $hidden = array('password');

        public function projects()
        {
            return $this->belongsToMany('Project');
        }

        public function trys()
        {
            return $this->hasMany('Try');
        }

    /**
     * Get the unique identifier for the user.
     *
     * @return mixed
     */
    public function getAuthIdentifier()
    {
        return $this->getKey();
    }

    /**
     * Get the password for the user.
     *
     * @return string
     */
    public function getAuthPassword()
    {
        return $this->password;
    }

    /**
     * Get the e-mail address where password reminders are sent.
     *
     * @return string
     */
    public function getReminderEmail()
    {
        return $this->email;
    }

}

控制器用户:

<?php

class user extends BaseController {


    public function showWelcome($id)
    {
        $user1 = User::find($id);
        return View::make('users.index', array('user' => $user1)); //
    }

}

查看users / index.php

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>first page</title>

</head>
<body>
    <?php echo 'Hello'; ?>
</body>
</html>

和routes.php:

<?php
Route::get('user/{id}', 'user@showWelcome');
Route::get('/', function()
{
    return View::make('hello');
});

感谢您的帮助

2 个答案:

答案 0 :(得分:16)

您不应该收到此错误,因为您似乎正在使用Eloquent,并且有一个find()方法。

但是你得到了这个错误并且有一些可能的原因:

1)您正在呼叫的User::与您在此处显示的不一致,以检查您的控制器中的执行情况:

$reflector = new ReflectionClass("User");
$fn = $reflector->getFileName();
dd($fn);

它必须向您显示班级的完整路径。

2)自动加载有问题,您可以运行:

composer dumpautoload

尝试修复它。

3)Laravel源代码有问题,您可以删除Laravel代码:

rm -rf vendor/laravel

再次安装

composer update

答案 1 :(得分:4)

有时这种冲突是在Laravel中存在同名的另一个模型时引起的,并且很可能优先于您的模型。避免&#34;关键词&#34;。对我来说,我的问题是调用我的模型:表单和我的数据库表(来自迁移):表单

在我的 FormController 中运行以下cmd:

$reflector = new ReflectionClass("Form");
$fn = $reflector->getFileName();
dd($fn);

告诉我&#34;真实&#34; 表单位于Illuminate框架中:

"/home/pkanane/laravel_appz/cpay/vendor/laravel/framework/src/Illuminate/Support/Facades/Form.php" 

所以我刚将模型名称更改为 WebForm ,我的数据库表格更改为 web_forms