thinkPHP模型关联查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkPHP模型关联查询相关的知识,希望对你有一定的参考价值。

现在我有两个模型如图,有两个Model,一个PriceList,一个ProductList。。。我要在控制器中怎么写,才能显示两个Model对应表所有字段。

price 里用的是belongsTo,只能自动获取一个产品

$price = PriceList::get(1);
//假设产品名称字段是title
echo $price->productlist->title;

product里面是关联了多个价格的

$products =  ProductList::where('status',1)->limit(10)->select();

foreach($products as $product)
    var_export($product->pricelist);

这里输出的价格应该是一个列表。

参考: 模型关联 Thinkphp5.1

追问

图片是,两个表的对应关系。。。

我按照你写的改了以下,,,现在能不能返回在ProductList加个条件,只返回价格表price里面代理为1的数据。。。我写的haswhere怎么没用?

大佬求指点。

$prices = $product->pricelist()->where('p_u_level',1)->select();

我改成这样就行啦。

追答

如果关系是一对多,实际使用需要条件限制只需要一对一的话,可以用view来 做

Db::view('productList','*')
->join('priceList','left','productList.p_proid=priceList.p_proid')
->where('priceList.p_u_level',1)
->select();

这样可以简化数据库查询次数,尤其是在列表页。

数据模型的表关联,是逐条二次查询来生成数据的,有多少条数据就会进行多少次二次查询。

参考技术A

一对多的查询:

// 这是产品关联价格的一对多查询,可以试试
$productList = ProductList::get(1);
// 也可以进行条件搜索
dump($productList->pricelist()->where('status',1)->select());

一对一的查询:

$priceList = PriceList::get(1);
// 输出User关联模型的属性
echo $priceList->productlist->select();

以上是关于thinkPHP模型关联查询的主要内容,如果未能解决你的问题,请参考以下文章

thinkPHP模型关联查询

thinkphp 关联查询 怎么统计关联表查出来的数据数量

thinkphp5 怎么进行跨库关联查询

thinkphp6 关联模型如何查询已经软删除的数据

thinkphp5 的 belongsToMany 多对多关联用法

thinkphp 3.2中依靠关联模型来关联三个表