two foreign keys, how to map with laravel eloquent(两个外键,如何用laravel eloquent映射)
问题描述
我在 MySQL 中有两个表,其中第一个称为用户,第二个称为游戏.表结构如下.
I have two tables in MySQL, where the first one is called users and the second one is called games. The table structure is as follows.
用户
- id(主要)
- 电子邮件
- 密码
- 真实姓名
游戏
- id(主要)
- user_one_id(国外)
- user_one_score
- user_two_id(国外)
- user_two_score
我的游戏桌有两个对外关系,两个用户.
My games table is holding two foreign relations to two users.
我的问题是如何为这个表结构建立模型关系??- 根据 laravel 文档,我应该在模型内部创建一个函数并将其与其关系绑定
My question is how do I make the model relations for this table structure?? - According to the laravel documentation, I should make a function inside the model and bind it with its relations
例如
public function users()
{
$this->belongsTo('game');
}
但是我似乎无法在文档中找到任何告诉我如何处理两个外键的内容.就像我上面的表格结构一样.
however I can't seem to find anything in the documentation telling me how to deal with two foreign keys. like in my table structure above.
我希望你能帮助我一路走来.
I hope you can help me along the way here.
谢谢
推荐答案
迁移:
$table->integer('player1')->unsigned();
$table->foreign('player1')->references('id')->on('users')->onDelete('cascade');
$table->integer('player2')->unsigned();
$table->foreign('player2')->references('id')->on('users')->onDelete('cascade');
还有一个模型:
public function player1()
{
$this->belongsTo('Game', 'player1');
}
public function player2()
{
$this->belongsTo('Game', 'player2');
}
编辑按照用户 deczo 的建议将游戏"更改为游戏".
EDIT changed 'game' to 'Game' as user deczo suggested.
这篇关于两个外键,如何用laravel eloquent映射的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:两个外键,如何用laravel eloquent映射
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- PHP - if 语句中的倒序 2021-01-01