人五人六博客网
导航
  • 首页
  • thinkPHP
  • 数据库
  • Linux
  • PHP
  • 前端
  • 杂七杂八
  • 每日简报
  • 浏览器书签
搜索
  1. 首页
  2. 归档
  3. 202209
  • Websocket 数据传输大小问题解决思路
    • 2022/9/20
    • 前端
    Websocket 数据传输大小问题解决思路
    经过爬坑发现websocket数据传输是有大小限制的,不能超过128k 而超过128k则需要进行切片处理,添加标识进行多次传输 一、所以先将数据转换为16进制,判断大小,然后进行切片传输 服务端根据标识判断是否需要重组 字符串转16进制 二、经过实践发现还可以...
    • 1174阅读
    • 0评论
  • js  字符串与16进制互转
    • 2022/9/20
    • 前端
    js 字符串与16进制互转
    function strToUtf8Bytes(str) { const utf8 = []; for (let ii = 0; ii < str.length; ii++) { let charCode = str.ch...
    • 1003阅读
    • 0评论
    • 2022/9/19
    • SQL
    sqlserver通过SQL语句查询表结构或视图结构
    SELECT COLUMN_NAME, DATA_TYPE, CHARACTER_MAXIMUM_LENGTH, CHARACTER_OCTET_LENGTH FROM information_schema.COLUMN...
    • 1276阅读
    • 0评论
  • tp5.1中将base64文件存入到sqlserver数据库image字段类型中
    • 2022/9/19
    • PHP
    tp5.1中将base64文件存入到sqlserver数据库image字段类型中
    由于前端传过来的是base64字符串,无法直接插入表字段类型为image中,所以要经过decode->转16进制->入库 示例: $report = base64_decode($baseStr); $reportResouce =...
    • 823阅读
    • 0评论
没有更多了~
边栏
热门文章
  • TP5执行插入/更新语句报The active result for the query contains no fields.
    1
    TP5执行插入/更新语句报The active result for the query contains no fields.
    • 2022/10/26
    • 11303阅读
  • Apktool回编译问题:libpng error: Not a PNG file
    2
    Apktool回编译问题:libpng error: Not a PNG file
    • 2022/5/31
    • 6415阅读
  • elementUI 中el-table 的 formatter 和 scope template 不能同时存在问题解决办法
    3
    elementUI 中el-table 的 formatter 和 scope template 不能同时存在问题解决办法
    • 2021/10/27
    • 4246阅读
  • ThinkPHP 获取最后一条sql语句
    4
    ThinkPHP 获取最后一条sql语句
    • 2021/9/30
    • 4070阅读
  • composer报错:A temporary file could not be opened to write the process output:  fopen(C:\Users\ADMINI~1\AppData\Local\Temp\2\sf_proc_00.out.lock): failed to open stream: No such file or directory
    5
    composer报错:A temporary file could not be opened to write the process output: fopen(C:\Users\ADMINI~1\AppData\Local\Temp\2\sf_proc_00.out.lock): failed to open stream: No such file or directory
    • 2022/2/23
    • 3855阅读
最新评论
    标签
    • 60s 89
    • 每日简报 80
    • windows 2
    • 文字转语音 1
    • deepseek 1
    • contextmenujs 1
    • tp6 1
    • Telnet 1
    • 分词 1
    • sqlserveer 0
    粤ICP备19127209号-1 本站由 Emlog 驱动
    sitemap