来自两列

时间:2016-10-21 05:12:08

标签: php mysql laravel eloquent

我在调度离开ICAO和从我的日程表中到达ICAO时遇到了问题。 Laravel不断给我错误,我的关系搞砸了。这是代码。

Schema::create('airports', function (Blueprint $table) {
        $table->increments('id');
        $table->string('name');
        $table->string('city');
        $table->string('country');
        $table->string('iata');
        $table->string('icao');
        $table->double('lat');
        $table->double('lon');
        $table->longText('data')->nullable(); //JSON Data for All gate information for the system.
        $table->softDeletes();
    });
Schema::create('schedule_templates', function (Blueprint $table) {
        $table->increments('id');
        $table->string('code');
        $table->string('flightnum');
        $table->integer('depicao')->unsigned();
        $table->foreign('depicao')->references('id')->on('airports')->onDelete('cascade');
        $table->integer('arricao')->unsigned();
        $table->foreign('arricao')->references('id')->on('airports')->onDelete('cascade');
        $table->string('aircraft')->nullable();
        $table->boolean('seasonal');
        $table->date('startdate');
        $table->date('enddate');
        $table->time('deptime');
        $table->time('arrtime');
        $table->integer('type');
        $table->boolean('enabled');
        $table->text('defaults');
        $table->timestamps();
        $table->softDeletes();
    });

以下是模型

class ScheduleTemplate extends Model
{
    public $table = "schedule_templates";

    public function depicao()
    {
        return $this->hasOne('App\Models\Airport', 'depicao');
    }
    public function arricao()
    {
        return $this->hasOne('App\Models\Airport', 'arricao');
    }
}

class Airport extends Model
{
    //
    public $timestamps = false;

    public function schedules()
    {
        return $this->belongsToMany('App\ScheduleTemplate');
    }
}

当我尝试使用以下代码进行查询时,出现错误

  

SQLSTATE [42S22]:未找到列:1054'where子句'中的未知列'vaos_airports.depicao'(SQL:select * from vaos_airports其中vaos_airportsdepicao in( 1))

$schedules = ScheduleTemplate::with('depicao')->with('arricao')->get();

最终目标是将结果拉入表格。如果感兴趣,这是代码。

@foreach($schedules as $s)
     <tr>
          <td>{{$s->code}}</td>
          <td>{{$s->flightnum}}</td>
          <td>{{$s->depicao()->name}}</td>
          <td>{{$s->arricao()->name}}</td>
          <td>{{$s->aircraft}}</td>
          <td>{{$s->seasonal}}</td>
          <td>{{$s->type}}</td>
     </tr>
@endforeach

编辑:

我修复了关系问题显然我把它们交换了。以下是更新的模型类

class ScheduleTemplate extends Model
{
    public $table = "schedule_templates";

    public function depicao()
    {
        return $this->belongsTo('App\Models\Airport', 'depicao');
    }
    public function arricao()
    {
        return $this->belongsTo('App\Models\Airport', 'arricao');
    }
}

class Airport extends Model
{
    //
    public $timestamps = false;

    public function schedules()
    {
        return $this->hasMany('App\ScheduleTemplate');
    }
}

错误现在位于视图文件中。我要么得到一个BelongsTo错误:

  

未定义属性:Illuminate \ Database \ Eloquent \ Relations \ BelongsTo :: $ name

或者如果我有arricao或depicao没有“()”

  

尝试获取非对象的属性

1 个答案:

答案 0 :(得分:5)

关键是,关系的第二个参数应该是外键,第二个参数应该是本地键。

来自文档:

return $this->hasOne('App\Phone', 'foreign_key', 'local_key');

所以在你的情况下,试试这个:

public function depicao()
{
    return $this->hasOne('App\Models\Airport', 'id', 'depicao');
}
public function arricao()
{
    return $this->hasOne('App\Models\Airport', 'id', 'arricao');
}

<强>更新 抛出错误是因为此关系具有相同的列名称。在我看来,有两个解决方案:

  1. 尝试从关系中获取第一个对象,就像这样。 但请注意:急切加载不起作用!

    <td>{{$s->depicao()->first()->name}}</td> <td>{{$s->arricao()->first()->name}}</td>

  2. 重命名您的关系或列,因此它们不会与当前列名重叠。这是迄今为止最好的选择。

  3. 例如,您可以将列更改为 depeciao_id arricao_id ,这也表示列被引用到具有相应ID的另一个表,这更具描述性。