我用webman-admin,生成了一个前台模块,
是基于上表生成的,
运行很正常,
但是,我在首页写如下代码,却不行
<?php
namespace app\controller;
use support\Request;
use support\Response;
use app\model\Buy;
use plugin\admin\app\controller\Crud;
use support\exception\BusinessException;
class IndexController extends Crud
{
public function index(Request $request)
{
// Webman 使用 ThinkORM 进行查询
$zj = Db::table('fg_buy')
->field('yh, SUM(xse) as total_xse')
->group('yh')
->order('total_xse', 'desc')
->limit(10)
->select();
return json(['code' => 0, 'msg' => 'ok','data' =>$zj]);
}
}
完全运行不了,请问各位大咖,我该怎么写?
你Db没引用。。。。。。。。
use support\Db;
谢谢