10 2023 档案
发表于 2023-10-30 20:20阅读:248评论:0推荐:0
摘要:结合 html2canvas 和 jspdf 插件处理 /* eslint-disable */ //不使用JQuery版的 import html2canvas from 'html2canvas' import JsPDF from 'jspdf' /** * @param ele 要生成 pd
阅读全文 »
发表于 2023-10-20 09:16阅读:12评论:0推荐:0
摘要:1、校验数据类型 export const typeOf = function(obj) { return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase() } 示例: typeOf('树哥') // string type
阅读全文 »