• buildAdmin 后端控制器的代码分析


    buildAdmin的代码生成,很像是 fastadmin 的生成模式,当我们利用数据库生成了一个控制器的时候,我们可以看到, 它的生成代码很简洁

    
    <?php
    
    namespace app\admin\controller\askanswer;
    
    use app\common\controller\Backend;
    
    /**
     * 回答管理
     */
    class Answer extends Backend     //控制器继承了 backend
    {
        /**
         * Answer模型对象
         * @var object
         * @phpstan-var \app\admin\model\Answer
         */
        //定义了一个 模型对象,也就是对应数据表的 模型
        protected object $model;
        //这里是在添加数据中 排除了一些,自动生成的字段,  在Backend中,有对这些字段的调用
        protected array|string $preExcludeFields = ['id', 'create_time', 'update_time'];
    
        //这里是设置了前端的快速搜索
        protected string|array $quickSearchField = ['id'];
    
        public function initialize(): void
        {
            parent::initialize(); //这里用了父类的 初始化方法, 做了一些 用户认证,权限判断,数据库连接检测等
            $this->model = new \app\admin\model\Answer;
            $this->request->filter('clean_xss');  //这里对 request 做了一次 xss 攻击的过滤
        }
    
    
        /**
         * 若需重写查看、编辑、删除等方法,请复制 @see \app\admin\library\traits\Backend 中对应的方法至此进行重写
         */
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37

    接着我们来到,父类, backend
    在这里插入图片描述
    在追代码的过程中,我没有看到 跨域的操作, 因为fastadmin 在这里面是有跨域操作的一段代码的,后来经过 整块代码搜索, 才想起来, 这是tp8了, 是有中间键的,而fastadmin中是tp5.0,没有中间键的
    在这里插入图片描述
    真正的 增,删,改,查的代码 就在traits中

    
    
    namespace app\admin\library\traits;
    
    use Throwable;
    use think\facade\Config;
    
    /**
     * 后台控制器trait类
     * 已导入到 @see \app\common\controller\Backend 中
     * 若需修改此类方法:请复制方法至对应控制器后进行重写
     */
    trait Backend
    {
        /**
         * 排除入库字段
         * @param array $params
         * @return array
         */
        protected function excludeFields(array $params): array
        {
            if (!is_array($this->preExcludeFields)) {
                $this->preExcludeFields = explode(',', (string)$this->preExcludeFields);
            }
    
            foreach ($this->preExcludeFields as $field) {
                if (array_key_exists($field, $params)) {
                    unset($params[$field]);
                }
            }
            return $params;
        }
    
        /**
         * 查看
         * @throws Throwable
         */
        public function index(): void
        {
            if ($this->request->param('select')) {
                $this->select();
            }
    
            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);
    
            $this->success('', [
                'list'   => $res->items(),
                'total'  => $res->total(),
                'remark' => get_route_remark(),
            ]);
        }
    
        /**
         * 添加
         */
        public function add(): void
        {
            if ($this->request->isPost()) {
                $data = $this->request->post();
                if (!$data) {
                    $this->error(__('Parameter %s can not be empty', ['']));
                }
    
                $data = $this->excludeFields($data);
                if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
                    $data[$this->dataLimitField] = $this->auth->id;
                }
    
                $result = false;
                $this->model->startTrans();
                try {
                    // 模型验证
                    if ($this->modelValidate) {
                        $validate = str_replace("\\model\\", "\\validate\\", get_class($this->model));
                        if (class_exists($validate)) {
                            $validate = new $validate;
                            if ($this->modelSceneValidate) $validate->scene('add');
                            $validate->check($data);
                        }
                    }
                    $result = $this->model->save($data);
                    $this->model->commit();
                } catch (Throwable $e) {
                    $this->model->rollback();
                    $this->error($e->getMessage());
                }
                if ($result !== false) {
                    $this->success(__('Added successfully'));
                } else {
                    $this->error(__('No rows were added'));
                }
            }
    
            $this->error(__('Parameter error'));
        }
    
        /**
         * 编辑
         * @throws Throwable
         */
        public function edit(): void
        {
            $id  = $this->request->param($this->model->getPk());
            $row = $this->model->find($id);
            if (!$row) {
                $this->error(__('Record not found'));
            }
    
            $dataLimitAdminIds = $this->getDataLimitAdminIds();
            if ($dataLimitAdminIds && !in_array($row[$this->dataLimitField], $dataLimitAdminIds)) {
                $this->error(__('You have no permission'));
            }
    
            if ($this->request->isPost()) {
                $data = $this->request->post();
                if (!$data) {
                    $this->error(__('Parameter %s can not be empty', ['']));
                }
    
                $data   = $this->excludeFields($data);
                $result = false;
                $this->model->startTrans();
                try {
                    // 模型验证
                    if ($this->modelValidate) {
                        $validate = str_replace("\\model\\", "\\validate\\", get_class($this->model));
                        if (class_exists($validate)) {
                            $validate = new $validate;
                            if ($this->modelSceneValidate) $validate->scene('edit');
                            $validate->check($data);
                        }
                    }
                    $result = $row->save($data);
                    $this->model->commit();
                } catch (Throwable $e) {
                    $this->model->rollback();
                    $this->error($e->getMessage());
                }
                if ($result !== false) {
                    $this->success(__('Update successful'));
                } else {
                    $this->error(__('No rows updated'));
                }
            }
    
            $this->success('', [
                'row' => $row
            ]);
        }
    
        /**
         * 删除
         * @param array $ids
         * @throws Throwable
         */
        public function del(array $ids = []): void
        {
            if (!$this->request->isDelete() || !$ids) {
                $this->error(__('Parameter error'));
            }
    
            $where             = [];
            $dataLimitAdminIds = $this->getDataLimitAdminIds();
            if ($dataLimitAdminIds) {
                $where[] = [$this->dataLimitField, 'in', $dataLimitAdminIds];
            }
    
            $pk      = $this->model->getPk();
            $where[] = [$pk, 'in', $ids];
    
            $count = 0;
            $data  = $this->model->where($where)->select();
            $this->model->startTrans();
            try {
                foreach ($data as $v) {
                    $count += $v->delete();
                }
                $this->model->commit();
            } catch (Throwable $e) {
                $this->model->rollback();
                $this->error($e->getMessage());
            }
            if ($count) {
                $this->success(__('Deleted successfully'));
            } else {
                $this->error(__('No rows were deleted'));
            }
        }
    
        /**
         * 排序
         * @param int $id       排序主键值
         * @param int $targetId 排序位置主键值
         * @throws Throwable
         */
        public function sortable(int $id, int $targetId): void
        {
            $dataLimitAdminIds = $this->getDataLimitAdminIds();
            if ($dataLimitAdminIds) {
                $this->model->where($this->dataLimitField, 'in', $dataLimitAdminIds);
            }
    
            $row    = $this->model->find($id);
            $target = $this->model->find($targetId);
    
            if (!$row || !$target) {
                $this->error(__('Record not found'));
            }
            if ($row[$this->weighField] == $target[$this->weighField]) {
                $autoSortEqWeight = is_null($this->autoSortEqWeight) ? Config::get('buildadmin.auto_sort_eq_weight') : $this->autoSortEqWeight;
                if (!$autoSortEqWeight) {
                    $this->error(__('Invalid collation because the weights of the two targets are equal'));
                }
    
                // 自动重新整理排序
                $all = $this->model->select();
                foreach ($all as $item) {
                    $item[$this->weighField] = $item[$this->model->getPk()];
                    $item->save();
                }
                unset($all);
                // 重新获取
                $row    = $this->model->find($id);
                $target = $this->model->find($targetId);
            }
    
            $backup                    = $target[$this->weighField];
            $target[$this->weighField] = $row[$this->weighField];
            $row[$this->weighField]    = $backup;
            $row->save();
            $target->save();
    
            $this->success();
        }
    
        /**
         * 加载为select(远程下拉选择框)数据,默认还是走$this->index()方法
         * 必要时请在对应控制器类中重写
         */
        public function select(): void
        {
    
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
  • 相关阅读:
    如何封装一个实用的上传组件
    R语言ggplot2可视化:使用ggpubr包的ggmaplot函数可视化MA图(MA-plot)、设置label.rectangle参数为图中标签添加矩形框
    简单的PCI总线INTx中断实现流程
    Surge:分子生成最前沿
    43、Flink 自定义窗口触发器代码示例
    一文全面了解:react-antd-admin 如何封装 axios
    30WSIP网络号角喇叭
    使用ServiceSelf解决.NET应用程序做服务的难题
    Selenium特殊场景问题汇总
    linux共享文件问题
  • 原文地址:https://blog.csdn.net/hjh15827475896/article/details/134511504