2022年4月2日
摘要: https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Basics_of_HTTP/MIME_types 阅读全文
posted @ 2022-04-02 11:37 ljyyjj 阅读(18) 评论(0) 推荐(0) 编辑
  2022年3月15日
摘要: const parse = data => { const uid = `uid_${Date.now()}`; const process = (input, prefix = '', json = {}) => { Object.keys(input).forEach(key => { cons 阅读全文
posted @ 2022-03-15 19:53 ljyyjj 阅读(1051) 评论(0) 推荐(0) 编辑
  2022年2月10日
摘要: let str = info; let c = document.createElement("canvas"); document.body.appendChild.c; let ctx = c.getContext("2d"); ctx.font = "14px Arial"; let grad 阅读全文
posted @ 2022-02-10 10:57 ljyyjj 阅读(68) 评论(0) 推荐(0) 编辑
  2022年1月5日
摘要: 今天摸的鱼就是以后加的班 阅读全文
posted @ 2022-01-05 14:33 ljyyjj 阅读(11) 评论(0) 推荐(0) 编辑
  2021年12月13日
摘要: 模板 <span>{{$t('el.table.total', { pagetotal: 123 })}}</span> js代码中 this.$t('el.table.number', { "Number": index + 1 }); 语言包中 table: { total: '共 {paget 阅读全文
posted @ 2021-12-13 20:14 ljyyjj 阅读(760) 评论(0) 推荐(0) 编辑
摘要: Vue3教程:Vue3.0 + Vant3.0 搭建种子项目 链接:https://www.cnblogs.com/han-1034683568/p/13875663.html 阅读全文
posted @ 2021-12-13 19:07 ljyyjj 阅读(6) 评论(0) 推荐(0) 编辑
摘要: user-select: none; 一般情况下都是这个导致无法复制 所以在打开F12,找到这个属性取消便可。 注:如果打开F12看的内容是张图片,那本方法不可使用。 将上述两个的user-select的属性勾选掉即可 若不是这两个或勾选掉还是无法复制,那可以尝试找找其他元素进行取消勾选。 阅读全文
posted @ 2021-12-13 19:01 ljyyjj 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/tianxintiandisheng/article/details/103764074 实例 /** * @function 处理表格的行 * @description 合并Grid的行 * @param grid {Ext.Grid.Pane 阅读全文
posted @ 2021-12-13 18:53 ljyyjj 阅读(248) 评论(0) 推荐(0) 编辑
摘要: js 获取n位数m进制的随机数 n 的取值范围为 0 < n > 1.7976931348623157e+308 (Number.MAX_VALUE) m的取值范围为 2 ⇐ m >= 36 class GRNum { // 获取n位数m进制的随机数 /** * @function 获取n位数m进制 阅读全文
posted @ 2021-12-13 18:19 ljyyjj 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/wenbinjiang/p/11776782.html 阅读全文
posted @ 2021-12-13 17:32 ljyyjj 阅读(20) 评论(0) 推荐(0) 编辑