2022/2/28

fastadmin新增/修改数据自定义下拉框数据

Utils.php class Utils extends Backend {     static function getRoomnum(){         $model = Room::que…

  • fastadmin php
  • 2022/2/28
  • 915
  • 2021/12/3

    Bootstrap-table底部求和 fastadmin表格底部求和

     Table.api.init({                 showFooter: true,//添加这个        &nb…

  • bootstrap-table fastadmin
  • 2021/12/3
  • 1,262
  • 2021/9/26

    docker 安装 nginx php mysql环境 Fastadmin

    docker pull nginx docker run --name mynginx -p 80:80 -v /D/work/www:/var/www -v /D/woek/nginx/conf/conf.d:/etc/nginx/conf.d -d nginx nginx.conf…

  • docker fastadmin
  • 2021/9/26
  • 1,072
  • 2021/9/6

    fastadmin php去掉index.php 404

    添加 location / {     if (!-e $request_filename) {         rewrite ^(.*)$ /index.php?s=/$1 last;         break;     } }

  • fastadmin php
  • 2021/9/6
  • 769
  • 2021/1/7

    thinkphp一对多关联查询排序/随机排序

    一对多关联 关联定义 一对多关联的情况也比较常见,使用hasMany方法定义,参数包括: hasMany('关联模型名','外键名','主键名',['模型别名定义']); 例如一篇文章可以有多个评论 …

  • fastadmin thinkphp
  • 2021/1/7
  • 1,749
  • 2020/12/4

    fastadmin 表格排序 bootstrapTbale排序

  • fastadmin
  • 2020/12/4
  • 777
  • 2020/11/25

    exec() has been disabled for security reasons

    打开php.ini,搜索disable_functions,代码如下: disable_functions = scandir,passthru,exec,system,chroot,chgrp,chown,shell_exec,proc_open,proc_get_status, ini_alter,ini_alter,ini_restore,dl,pfsockopen,…

  • fastadmin php thinkphp
  • 2020/11/25
  • 1,098