hero5200 2013-03-14 16:03:32 3129次浏览 3条回复 0 0 0

先遇到一个问题,有三张表:Category,Citycategory,city。Citycategory表为其与2表的关联表,有字段category_id,city_id。现在需要在category的view里去到id对应的city表里的值,请问要怎么配置三个model里的relations和怎么去city的值。谢谢

  • 回复于 2013-03-14 20:33 举报
    public function relations() {
    // NOTE: you may need to adjust the relation name and the related
    // class name for the relations automatically generated below.
    return array(
        'city' => array(self::MANY_MANY, 'City', 
                                     'Citycategory(category_id, city_id)'),
    );
    

    }

  • 回复于 2013-03-15 09:16 举报

    这个是写在Category的model里的么?我试过,查询Category的时候查不到city里的值呢!

  • 回复于 2013-03-15 13:11 举报

    Yiibook
    看看上面这个,也许对你有帮助

您需要登录后才可以回复。登录 | 立即注册