Cake php 中的 ownsTo

发布于 2024-11-05 18:18:24 字数 719 浏览 0 评论 0原文

我遵循 CakePHP 命名约定,

我需要建立“多对一”-$belongsTo 关联 Citie to Countrie ------- 意思是很多城市属于一个国家

这是Citie模型

class Citie extends AppModel
{
    var $name = 'Citie';
    var $belongsTo = array(
        'Countrie' => array(
            'className' => 'Countrie',
            'foreignKey' => 'countrie_id'
        )
    ); 
}

你可以看到这个链接返回结果时没有关联数据 DisplayCity

这是乡村模型

class Countrie extends AppModel 
{
    var $name = 'Countrie';
}

在这里你可以看到我遵循命名约定。 显示所有国家/地区

I'm following CakePHP naming convention

I need to make "many to one"-$belongsTo association
Citie to Countrie ------- meaning Many Cities belong to a Country

This is the Citie Model

class Citie extends AppModel
{
    var $name = 'Citie';
    var $belongsTo = array(
        'Countrie' => array(
            'className' => 'Countrie',
            'foreignKey' => 'countrie_id'
        )
    ); 
}

You can see that there are no association data when result is returned on this link
DisplayCity

This is the Countrie Model

class Countrie extends AppModel 
{
    var $name = 'Countrie';
}

Here you can see that I follow the naming convention. Display all countries

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫弦 2024-11-12 18:18:24

如果您遵守惯例
所以你必须有城市表的城市模型,国家表的国家模型,外键将是country_id

<?php
class City extends AppModel {
    var $name = 'City';
    var $belongsTo = array(
        'Country' => array(
            'className' => 'Country',
            'foreignKey' => 'country_id',
        )
    );
}
?>

<?php
class Country extends AppModel {
    var $name = 'Country';
    var $hasMany = array(
        'City' => array(
            'className' => 'City',
            'foreignKey' => 'country_id',
        )
    );

}
?>

if you are following the convention
so you must have City model for cities table, Country model for countries table and the foreignKey will be country_id

<?php
class City extends AppModel {
    var $name = 'City';
    var $belongsTo = array(
        'Country' => array(
            'className' => 'Country',
            'foreignKey' => 'country_id',
        )
    );
}
?>

and

<?php
class Country extends AppModel {
    var $name = 'Country';
    var $hasMany = array(
        'City' => array(
            'className' => 'City',
            'foreignKey' => 'country_id',
        )
    );

}
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文