0

我有两个课程:学位和大学,

class Degree extends Eloquent {
      public function title(){
         return $this->degree_title;
      }
      public function college(){
         return $this->belongsTo('College','college_code');
      }
}
class College extends Eloquent {
      public function title(){
         return $this->college_title;
      }
}

我将它设置为 belongsTo 因为它在 hasOne() 上中断,错误是:

Call to a member function getResults() on a non-object

如果这是正确的方向,我不确定。

我一直在尝试的是使用 slug 搜索学位(它可以进行更好的分析),然后将结果传递给我创建的刀片。

注意:有一个 Degrees 表和一个 Colleges 表,我可以在没有连接的情况下运行查询:

学位控制器:

class DegreeController extends BaseController {
    public function single($slug)
       {
            $degree = Degree::where('slug', '=', $slug)->get();
            return View::make('degrees.single', array('degree' => $degree));
       }
}

单一视图:

@extends('master')
{{ -- Single Degree Blade-- }}
@section('content')

@foreach($major as $m)
    <div>
        <h1>{{ $m->title() }}</p>
        <p>{{ $m->college->title() }}</p>
        <p>Holland: {{ $m->holland() }}</p>
    </div>
@endforeach

@stop

我注意到的是使用$m->college->title()导致错误:SQLSTATE [42S22]:找不到列:1054 'where 子句'中的未知列'colleges.id'(SQL:select * from collegeswhere colleges. id= ? limit 1)(绑定: 数组 ( 0 => 'UAGSC', ))

这表明它忽略了我的自定义键,它不是 id 也不是整数,它是一个特定的 5 字母 varchar。

任何人都可以就如何解决这个问题给我任何建议吗?

4

2 回答 2

0

加入时,使用主键。主要是身份证。

将主键设为 INT 和 AUTO INCREMENT。

你会成功的。

于 2013-10-06T15:52:13.380 回答
0

我通过将 College 表的主键(ID)更改为与 college_code 引用的值相同的值来解决它。ID 不是自动增量或整数,我正在使用一个已经唯一的标识符,从长远来看,这对我来说更容易。

于 2014-04-17T23:18:52.407 回答