Blogger Information
鱼的熊掌
Blog
51
fans
0
comment
1
visits
64962
integral:0
P beans:102
  • List of blog posts
  • 企业微信局校互联应用登录弹出机构选择

    //生成授权链接 scope不能使用 静默授权:snsapi_base 使用手动授权:snsapi_privateinfo 或者 snsapi_userinfo'https://open.weixin.qq.com/connect/oauth2/au...

    2022-08-29 15:52 Read 557 comment 0
  • PHPExcel增加工作表

    $PHPExcel = new \PHPExcel(); // 添加工作表 $objWorkSheet = $PHPExcel->createSheet(); // 设置工作表下标 $PHPExcel->setActi...

    2022-08-08 18:01 Read 1116 comment 0
  • Vant 复选框组设置默认选中值无效

    2022-08-03 16:47 Read 2944 comment 0
  • Vue 页面加载完成显示页面

    v-clock [v-cloak]{ display: none; } var app =new Vue({ el:'#app' ...

    2022-08-03 16:25 Read 1271 comment 0
  • PHP冒泡排序

    $arr=[1,5,3,6,7,9,8];// 小到大function bulu_s_b($arr){ $len = count($arr); for ($i = 0; $i < $len -1; $i++) {//循环对比的轮数...

    2022-07-28 10:59 Read 457 comment 0
  • Windows查看服务器内存CPU信息

    cmd命令行运行 msinfo32

    2022-07-28 10:05 Read 719 comment 0
  • Uni-app 微信登录获取用户code

    import { WxCode , WxLogin } from '@/api/user.js' WxCode({ callback_url: 'http://m.test.com/#/pages/index/wx...

    2022-12-15 11:34 Read 2039 comment 0
  • Nginx域名80端口转发到其他内网服务器

    server{ listen 80; server_name cc.test.com 10.155.75.71; index index.php index.html index.htm default.php default.ht...

    2022-07-26 15:39 Read 1448 comment 0
  • Mysql导出表结构注释

    SELECT COLUMN_NAME 列名, DATA_TYPE 字段类型, COLUMN_COMMENT 备注, COLUMN_TYPE 数据类型, IS_NULLABLE 是否为空, COLUMN_DEFAULT 默认值FROM informat...

    2022-07-25 11:48 Read 1041 comment 0
  • PHP部门转成树形

    class Totree{ public function school_totree(){ $list=[ ['id'=>1,'name'=>'学校','pid'=>0], ['id'...

    2022-08-10 14:28 Read 445 comment 0
  • Nodejs切换镜像源

    windows命令界面输入 npm config set registry https://registry.npm.taobao.org

    2022-07-20 12:00 Read 835 comment 0
  • Fastadmin下拉多选框编辑显示已选选项

    php 参数存在 keyValue 只返回已选中数据 /** * @description: 学校下部门 * @return {*} */ public function school_dept() ...

    2022-07-17 07:23 Read 1449 comment 0
  • Fastadmin查询改为下拉框

    php /** * @description: 类型列表 * @return {*} */ public function get_type_list() { $params=$thi...

    2022-08-10 13:49 Read 1393 comment 0
  • VSCode实用插件

    1、Turbo Console Log 生成console.logCtrl+Alt+L 选中变量生成console.logShift+Alt+C 注释所有console.logShift+Alt+U 打开所有注释console.logShift+Al...

    2022-12-16 17:54 Read 1656 comment 0
  • PHP ZipArchive 打包文件进行下载

    header(‘Content-Type:text/html; charset= utf-8’); $zipname='压缩文件名称'; $zip = new ZipArchive; //压缩文件名 中文转gbk $file...

    2022-06-16 14:46 Read 985 comment 0