首页 > 文章列表 > ThinkPHP6手动分页:如何处理查询条件中缺少库存字段的情况?

ThinkPHP6手动分页:如何处理查询条件中缺少库存字段的情况?

444 2024-12-17

ThinkPHP6手动分页:如何处理查询条件中缺少库存字段的情况?

thinkphp6手动分页时如何处理缺少库存字段的情况

在进行分页查询时,我们可能会遇到查询条件中包含不存在于数据库字段的情况,例如查询有库存的物品但库存数量需要计算得出。本问答探讨了如何在thinkphp6中处理这种情况。

问题描述

原代码如下:

list($where, $alias, $limit, $order) = $this->queryBuilder();
$res = $this->model
    ->field($this->indexField)
    ->withJoin($this->withJoinTable, $this->withJoinType)
    ->alias($alias)
    ->where($where)
    ->order($order)
    ->paginate($limit)
    ->each(function ($item, $key) {
        $product_in = Db::name('product_in')->where('product_id', $item['id'])->sum('quantity'); //该物品的入库数量
        $product_out = Db::name('product_out')->where('product_id', $item['id'])->sum('quantity'); //该物品的出库数量
        $item['stock'] = $product_in - $product_out; //这里是库存计算
    });

$this->success('', [
    'list'   => $res->items(),
    'total'  => $res->total(),
    'remark' => get_route_remark(),
]);

解决方案

尽管可以使用子查询在数据库层面解决这个问题,但效率较低。更推荐的方法是:

  • 沟通沟通沟通!与产品经理沟通并讨论忽略此类问题。
  • 优化数据表结构。考虑添加库存字段并实时刷新,以便在查询时使用sql过滤。
来源:1733064395