dounanyin3179 2014-07-01 19:38
浏览 33
已采纳

laravel一对一的关系

I have xml_document table with these columns:

id
general_information_id

I have general_information table with these columns:

id
domain
log_file

The relationship between them is one to one.

Have I build the relationship correctly? Or I need to add xml_document_id column to the general_information table.

Secondly:

I have added a row to the xml_doucment and now I want to add a row to the general_information and link this new row to the xml_document

I tried this:

 $xmlDocument = XmlDocument::find(Input::get(4));
            $generalInformation = new GeneralInformation($dataGeneralInformation);
            $generalInformation->xmlDocument()->associate($xmlDocument);
            //$xmlDocument->generalInformation()->attach($generalInformation);
            $generalInformation->save();
            $xmlDocument->save();

but I got error that xml_document_id column doesn't exist in the general_information table.

I tried to replace associate with attach but I got that attach is not an existed function.

please help me I am tried of this one to one relationship, I couldn't know what is the correct way to do id. I don't know where to add columns in the database and what to do in the models. I have tried a lot of things but still so confused.

Update 1

class GeneralInformation extends  Eloquent{
.....   
public function xmlDocument(){
        return $this->belongsTo('XmlDocument');
    }
}


class XmlDocument extends Eloquent {
....
 public  function  generalInformation(){
        return $this->hasOne('GeneralInformation','general_information_id');
    }
}
  • 写回答

2条回答 默认 最新

  • douyan1453 2014-07-01 19:59
    关注

    To make a one-to-one relationship, you need to store the primary key of parent table in the child table as a foreign key. So if xml_document is parent and if it contains many general_information then the id field of the xml_document should be present in in the general_information table as xml_document_id.

    So, you may build the one-to-one relation like this:

    // xml_document model
    public function generalInfo()
    {
        return $this->hasOne('GeneralInformation');
    }
    

    Then the declare the GeneralInformation model.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)