- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 3 个表users
、teams
、athletes
。
用户可以是团队或运动员。
我将 user_id
放入 teams
和 athletes
表中。
我将下面的代码放在 User.php
模型中。
public function team()
{
return $this->hasOne (Team::class);
}
public function athlete()
{
return $this->hasOne (Athlete::class);
}
我把下面的代码放在 Team.php
模型中
public function user()
{
return $this->belongsTo(User::class);
}
我把下面的代码放在 Athlete.php
public function user()
{
return $this->belongsTo(User::class);
}
我在 Controller 中使用以下代码。
$staff_picks = User::notAdmin()->active()->orderBy('id','desc')->take(10)->team()->athlete()->get();
我遇到了错误
laravel.ERROR: Call to undefined method Illuminate\Database\Eloquent\Builder::team()`
知道为什么会这样吗?
最佳答案
好的,所以错误说
Call to undefined method Illuminate\Database\Eloquent\Builder::team()
这意味着 team()
方法未在类 Builder
中定义
现在 Builder 类位于vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php
命名空间Illuminate\Database\Eloquent
下
从逻辑上讲,名为 team()
的函数不可能存在,对吧?
team()
是模型 app/User.php
中的一个函数,它返回一个 hasOne
函数
hasOne()
在哪里?hasOne
是在 vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php
命名空间 Illuminate\Database 下的特征\Eloquent\Concerns
namespace Illuminate\Database\Eloquent\Concerns;
// Imports ommitted for brevity
trait HasRelationships
{
// Other methods ommitted for brevity
/**
* Define a one-to-one relationship.
*
* @param string $related
* @param string $foreignKey
* @param string $localKey
* @return \Illuminate\Database\Eloquent\Relations\HasOne
*/
public function hasOne($related, $foreignKey = null, $localKey = null)
{
$instance = $this->newRelatedInstance($related);
$foreignKey = $foreignKey ?: $this->getForeignKey();
$localKey = $localKey ?: $this->getKeyName();
return $this->newHasOne($instance->newQuery(), $this, $instance->getTable() . '.' . $foreignKey, $localKey);
}
// Other methods are omitted for brevity
没错,app/User.php
类没有使用 HasRelationships
特性,但它扩展了一个使用该特性的类*
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
*虽然不是直接的
Illuminate\Foundation\Auth\User extends Illuminate\Database\Eloquent\Model
namespace Illuminate\Foundation\Auth;
// Other Imports ommitted for brevity
use Illuminate\Database\Eloquent\Model;
class User extends Model implements
AuthenticatableContract,
AuthorizableContract,
CanResetPasswordContract
{
use Authenticatable, Authorizable, CanResetPassword, MustVerifyEmail;
}
和
Illuminate\Database\Eloquent\Model uses the Concerns\HasRelationships trait
namespace Illuminate\Database\Eloquent;
// Imports ommitted for brevity
abstract class Model implements Arrayable, ArrayAccess, Jsonable, JsonSerializable, QueueableEntity, UrlRoutable
{
use Concerns\HasAttributes,
Concerns\HasEvents,
Concerns\HasGlobalScopes,
Concerns\HasRelationships, // <-- THERE IT IS HERE!!!!
Concerns\HasTimestamps,
Concerns\HidesAttributes,
Concerns\GuardsAttributes,
ForwardsCalls;
// Rest of class ommitted for brevity
Concerns\HasRelationships
在没有导入的情况下来自哪里?因为 Concerns 是附加(或嵌套)到同一命名空间的命名空间,所以此类定义于
这个类在 Illuminate\Database\Eloquent
和 HasRelationships
是在 Illuminate\Database\Eloquent\Concerns
所以一个简单的调用 Concerns\HasRelationships
就足够了
现在 HasRelationships
trait 中有函数 hasOne
确保您是从模型实例而不是查询生成器调用模型中定义的关系
错
User::where('name', 'John Doe')->teams;
正确
User::where('name', 'John Does')->first()->teams;
在检索该模型之前,您对该模型所做的任何 SQL 操作都是一个查询生成器实例
但是一旦你通过 first()
获得模型本身,你就可以调用关系
您可能想要获取多个模型,因此在获取每条记录之后调用关系函数 team()
并不理想
预加载
使用 with
方法将关系数据包含在通过 get()
获取的集合中
假设我有一个 User
和一个 Profile
每个用户都有一个且只有一个配置文件,所以我在 User
模型上定义了一个 hasOne
关系
public function profile()
{
return $this->hasOne(Profile::class);
}
现在我们在迁移中需要一个外键来将profiles
表与users
表相关联
Schema::create('profiles', function (Blueprint $table) {
$table->bigIncrements('id');
$table->integer('age'); // Column to test with
$table->unsignedBigInteger('user_id');
$table->foreign('user_id')->references('id')->on('users');
$table->timestamps();
});
现在让我们播种一些数据
public function run()
{
factory(User::class, 10)->create()->each(function ($user) {
$user->profile()->create(['age' => rand(20, 60)]);
});
}
现在让我们打开 artisan tinker 看看会发生什么
>>> App\User::take(10);
=> Illuminate\Database\Eloquent\Builder {#3067}
take()
User 模型上的函数返回一个 Builder 实例
让我们尝试获取关于它的配置文件
>>> App\User::take(10)->profile();
BadMethodCallException with message 'Call to undefined method Illuminate/Database/Eloquent/Builder::profile()'
但现在我们知道为什么了
现在让我们试试预加载
>>> App\User::take(10)->with('profile');
=> Illuminate\Database\Eloquent\Builder {#3056}
返回一个查询生成器
让我们调用 get()
>>> App\User::take(10)->with('profile')->get();
现在我们得到了我们的数据集合
=> Illuminate\Database\Eloquent\Collection {#3070
all: [
App\User {#3022
id: 1,
name: "Augusta Botsford MD",
email: "xwaelchi@example.net",
email_verified_at: "2019-09-30 16:40:12",
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
profile: App\Profile {#3095
id: 1,
age: 29,
user_id: 1,
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
},
},
App\User {#3017
id: 2,
name: "Olga Leannon",
email: "ufay@example.com",
email_verified_at: "2019-09-30 16:40:12",
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
profile: App\Profile {#3096
id: 2,
age: 24,
user_id: 2,
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
},
},
App\User {#3019
id: 3,
name: "Bria Prosacco DDS",
email: "hartmann.trystan@example.com",
email_verified_at: "2019-09-30 16:40:12",
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
profile: App\Profile {#3097
id: 3,
age: 43,
user_id: 3,
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
},
},
App\User {#3054
id: 4,
name: "Clare Bayer",
email: "rosalinda60@example.org",
email_verified_at: "2019-09-30 16:40:12",
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
profile: App\Profile {#3098
id: 4,
age: 52,
user_id: 4,
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
},
},
App\User {#3058
id: 5,
name: "Vickie Kub",
email: "katherine.abbott@example.com",
email_verified_at: "2019-09-30 16:40:12",
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
profile: App\Profile {#3099
id: 5,
age: 42,
user_id: 5,
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
},
},
App\User {#3059
id: 6,
name: "Tressie Gottlieb",
email: "elmira.osinski@example.net",
email_verified_at: "2019-09-30 16:40:12",
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
profile: App\Profile {#3100
id: 6,
age: 21,
user_id: 6,
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
},
},
App\User {#3042
id: 7,
name: "Saige Pollich",
email: "gkemmer@example.org",
email_verified_at: "2019-09-30 16:40:12",
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
profile: App\Profile {#3101
id: 7,
age: 24,
user_id: 7,
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
},
},
App\User {#3087
id: 8,
name: "Dr. Emiliano Sauer",
email: "marks.florida@example.net",
email_verified_at: "2019-09-30 16:40:12",
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
profile: App\Profile {#3102
id: 8,
age: 42,
user_id: 8,
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
},
},
App\User {#3086
id: 9,
name: "Genoveva Abshire",
email: "colt.harber@example.com",
email_verified_at: "2019-09-30 16:40:12",
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
profile: App\Profile {#3103
id: 9,
age: 27,
user_id: 9,
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
},
},
App\User {#3088
id: 10,
name: "Dimitri Moore",
email: "slockman@example.net",
email_verified_at: "2019-09-30 16:40:12",
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
profile: App\Profile {#3104
id: 10,
age: 30,
user_id: 10,
created_at: "2019-09-30 16:40:12",
updated_at: "2019-09-30 16:40:12",
},
},
],
}
我希望这能消除一些困惑
关于php - 查询生成器上的未定义关系方法 - Laravel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58170942/
下面的说法正确吗? “人最好的 friend 是狗。” public class Mann { private BestFriend dog; //etc } 最佳答案 我想说这样
我一直在 documentation 中查看 Laravel 4 中的关系我正在尝试解决以下问题。 我的数据库中有一个名为“事件”的表。该表具有各种字段,主要包含与其他表相关的 ID。例如,我有一个“
我的表具有如下关系: 我有相互链接的级联下拉框,即当您选择国家/地区时,该国家/地区下的区域将加载到区域下拉列表中。但现在我想将下拉菜单更改为基于 Ajax 的自动完成文本框。 我的问题是,我应该有多
我正在尝试弄清楚如何构建这个数据库。我之前用过Apple的核心数据就好了,现在我只是在做一个需要MySQL的不同项目。我是 MySQL 的新手,所以请放轻松。 :) 对于这个例子,假设我有三个表,Us
MongoDB 的关系表示多个文档之间在逻辑上的相互联系。 文档间可以通过嵌入和引用来建立联系。 MongoDB 中的关系可以是: 1:1 (1对1) 1: N (1对多)
您能解释一下 SQL 中“范围”和“分配单元”之间的区别或关系吗? 最佳答案 分配单元基本上只是一组页面。它可以很小(一页)或很大(很多页)。它在 sys.allocation_units 中有一个元
我有一个表 geoLocations,其中包含两列纬度和经度。还有第二个表(让我们将其命名为城市),其中包含每对唯一的纬度和经度对应的城市。 如何使用 PowerPivot 为这种关系建模?创建两个单
我想用 SQLDelight 建模关系,尤其是 一对多关系。 我有 2 张 table :recipe和 ingredient .为简单起见,它们看起来像这样: CREATE TABLE recipe
我是 Neo4J 新手,我有一个带有源和目标 IP 的简单 CSV。我想在具有相同标签的节点之间创建关系。 类似于... source_ip >> ALERTS >> dest_ip,或者相反。 "d
我正在创建一个类图,但我想知道下面显示的两个类之间是否会有任何关联 - 据我了解,对于关联,ClassA 必须有一个 ClassB 的实例,在这种情况下没有但是,它确实需要知道 ClassB 的一个变
是否可以显示其他属性,即“hasTopping”等? 如何在 OWLViz 中做到这一点? 最佳答案 OWLViz 仅 显示类层次结构(断言和推断的类层次结构)。仅使用“is-a”关系进行描述。 OW
public class MainClass { ArrayList mans = new ArrayList(); // I'm filling in this arraylist,
我想知道“多对二”的关系。 child 可以与两个 parent 中的任何一个联系,但不能同时与两个 parent 联系。有什么办法可以加强这一点吗?我也想防止 child 重复条目。 一个真实的例子
我有一个已经创建的Grails插件,旨在支持许多应用程序。该插件具有一个Employee域对象。问题在于,当在主应用程序中使用该应用程序中的域对象时,需要将其引用回Employee对象。因此,我的主应
我有一个类(class)表、类(class)hasMany部分和部分hasMany讲座以及讲座hasMany评论。如果我有评论 ID 并且想知道其类(class)名称,我应该如何在 LectureCo
我有一个模型团队,包含 ID 和名称。所有可能的团队都会被存储。 我的模型游戏有两列 team_1 和 team_2..我需要哪种关系? 我已经测试了很多,但它只适用于一列.. 最佳答案 也许你可以试
我读了很多关于 ICE 或 Corba 等技术中使用的仆人和对象的文章。有很多资源我可以读到这样的东西: 一个仆人可以处理多个对象(为了节省资源)。 一个对象可以由多个仆人处理(为了可靠性)。 有人可
嗨, 我有一个令人沮丧的问题,我在这方面有点生疏。我有两个这样的类(class): class A{ int i; String j ; //Getters and setters} class B
class Employee { private String name; void setName(String n) { name = n; } String getNam
如果您有这样的关系: 员工与其主管员工之间存在多对一关系 员工与其部门的多对一关系 部门与其经理一对一 我会在 Employee 实体中写入: @ManyToOne (cascade=CascadeT
我是一名优秀的程序员,十分优秀!