2022/11/24

hbuliderx自定义方法注释

hbuilderX > 工具 > 代码块设置javascript代码块里面加入 { // 注意:本文档仅支持单行注释,并且'//'前不能有任何非空字符!!! // // HBuilderX使用json扩展代码块,兼容vscode的代…

  • HBuilderX
  • 2022/11/24
  • helei
  • 789
  • 2022/11/23

    前端代码规范检查工具

    F2ELint 是《阿里巴巴前端规约》的配套 Lint 工具,可以为项目一键接入规约、一键扫描和修复规约问题,保障项目的编码规范和代码质量。

  • 代码规范
  • 2022/11/23
  • helei
  • 826
  • 2022/11/22

    springboot代码规范检查 / alibaba代码检查IDAE插件 p3c-tpm

    阿里巴巴Java编码指南(XenoAmess TPM) 安装方式 File>setting>plugin>Marketplace 搜索p3c

  • springboot
  • 2022/11/22
  • helei
  • 821
  • 2022/11/15

    js复制到剪切板

    var ele = document.createElement("input"); //创建一个input标签 var name = encodeURIComponent(row.name) ele.setAttribute("value", ""); // 设置改input的value值 document.bo…

  • JavaScript
  • 2022/11/15
  • helei
  • 113
  • 2022/11/3

    mysql 将两个只有一行结果的select 合并到一行返回

    select AA.* , BB.* from (select count(id) from wl_pc_driver) as AA , (select count(id) from wl_pc_driver) as BB

  • mysql
  • 2022/11/3
  • helei
  • 814
  • 2022/11/1

    nginx 反向代理 websocket连接失败

    在反向代理中增加如下配置 关键配置 start proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; 关键配置 end

  • nginx springboot websocket
  • 2022/11/1
  • helei
  • 783
  • 2022/10/2

    springboot mybaits 使用原生sql查询 不返回实体类

    mapper package org.jeecg.modules.wenlv.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; impor…

  • jeecgboot mybatis-plus springboot
  • 2022/10/2
  • helei
  • 854