首页 文章
  • 0 votes
     answers
     views

    CakePHP可包含的行为没有触发

    第一次使用Cake及其可包含的行为,但它没有按预期工作......或者根本没有 . 我正在尝试获取产品配件清单 . 产品型号HABTM产品(别名'ProductRelation') . 连接表是products_products,它有两个产品ID - product_id和related_id . 与此相反,我想从给定的product_id中提取附件列表(从related_id列驱动的产品) ...
  • 0 votes
     answers
     views

    CakePHP可用于连接而不搜索其他表

    我正在尝试加入两个表,我发现this post正在使用包含来完成它 . 我正在尝试加入的表是orders和order_items . 这是我的Order和Order_Item控制器中的代码 Class OrderItem extends AppModel { public $useTable = 'order_items'; public $actsAs = array('Cont...
  • 2 votes
     answers
     views

    CakePHP订单查询结果超过1级

    我正在使用Containable行为来获取评论列表(belongsTo Post,属于Question; Question hasMany Post,Post has has Many Comments;所有这些都属于Users) . $data = $this->Question->find ( 'first', array ('contain' => ...

热门问题