1. 程式人生 > 實用技巧 >tp5.1關於關聯模型搜尋haswhere和where不能同時使用的問題

tp5.1關於關聯模型搜尋haswhere和where不能同時使用的問題

問題描述

haswhere和where不能連用,如果模型後寫了haswhere,再寫where的話haswhere就沒響應了,關於這點,要怎麼做才能解決關聯時即可以搜尋子表的欄位又可有搜尋本表的欄位的查詢呢?

場景復現

模型關聯搜尋部分

$where = new Where();
$tags = DocumentModel::hasWhere('user',['user_type' => '設計師'])->where($where)->with('user')->select();
dump($tags);

如圖hasWhere() 根本無效

問題分析和測試

1.單獨的haswhere() 查詢

$where = new Where();
$tags = DocumentModel::hasWhere('user',['user_type' => '設計師'])->with('user')->select();
dump($tags);

可以看到沒有任何問題

2.haswhere() 帶空where查詢器 查詢

$where = new Where();
$tags = DocumentModel::hasWhere('user',['user_type' => '設計師'])->where($where)->with('user')->select();
dump($tags);

可以看到haswhere 直接被忽視了

3.haswhere() 帶有條件的where 查詢器 查詢

$where = new Where();
$where['title'] = ['like','%文件%'];
//由於hasWhere方法使用的是JOIN查詢,在查詢條件中要指定別名,別名就是模型名
$where['DocumentModel.status'] = 1;
$tags = DocumentModel::hasWhere('user',['user_type' => '設計師'])->where($where)->with('user')->select();
dump($tags);

可以看到 haswhere 再次被忽視了

4.haswhere() 帶有條件的where (不用查詢器物件) 查詢

$tags = DocumentModel::hasWhere('user',['user_type' => '設計師'])->where('title', '文件2')->with('user')->select();
dump($tags);

可以看到這次haswhere 是有效果的

總結

haswhere 和 where 一起使用有以下幾點要注意

  1. 不能使用where 查詢器 ,也就是new Where()這種構造的查詢器
  2. where的查詢條件和 order 排序欄位 組好都要帶上別名(也就是模型名)