laravel中数据库表得关联问题
控制器中:
<code>public getShow($id){ $post=Post::find($id) return View::make('admin.post-detail')->with('posts',$post); }</code>
在post模板中:
<code>public function user(){ return $this->belongsTo('User'); }</code>
然后在post-detail.blade.php中可以这样使用:$post->user ..
<code>@foreach($posts as $post) {{$post->user->username}} @endforeach</code>
而posts表中并没有user字段 为什么却可以查询出来结果?
回复内容:
控制器中:
<code>public getShow($id){ $post=Post::find($id) return View::make('admin.post-detail')->with('posts',$post); }</code>
在post模板中:
<code>public function user(){ return $this->belongsTo('User'); }</code>
然后在post-detail.blade.php中可以这样使用:$post->user ..
<code>@foreach($posts as $post) {{$post->user->username}} @endforeach</code>
而posts表中并没有user字段 为什么却可以查询出来结果?
会在post表中找user_id字段,如果您想定义一个不同的外键字段,您可以通过 belongsTo 函数的第二个参数传递它:
<code>class Phone extends Eloquent { public function user() { return $this->belongsTo('User', 'local_key'); } } </code>
belongsTo()
函数是 Laravel Eloquent 提供的模型间关系的一种,Post
类由于继承了\Eloquent
类所以也可以调用。
模型间关系具体该如何使用可以参考:深入理解 Laravel Eloquent(三)——模型间关系(关联)
请查看laravel的Eloquent ORM用法。
Defining The Inverse Of A Relation
<code>php</code><code>class Post extends Eloquent { public function user() { //$foreignKey默认为当前调用函数_id,即user_id,$otherKey为当前类主键id //select user_id from post where id=$post_id; //select username from user where user_id=$user_id; return $this->belongsTo('User', $foreignKey, $otherKey); } } </code>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an
