当前位置: 首页> 游戏> 手游 > 淘宝拍卖网官网首页_兰州网站建设科技公司_seo sem是指什么意思_推广普通话手抄报内容资料

淘宝拍卖网官网首页_兰州网站建设科技公司_seo sem是指什么意思_推广普通话手抄报内容资料

时间:2025/7/13 23:45:19来源:https://blog.csdn.net/2302_76925238/article/details/144561164 浏览次数:0次
淘宝拍卖网官网首页_兰州网站建设科技公司_seo sem是指什么意思_推广普通话手抄报内容资料

只预拉第一页的函数

// Excel 文件预览函数const previewExcelFile = async (url: string) => {try {const response = await fetchWithTimeout(url, timeout);if (!response.ok) throw new Error('网络响应失败');const res = await response.arrayBuffer();const workbook = XLSX.read(new Uint8Array(res), { type: 'array' });const sheetName = workbook.SheetNames[0]; // 默认读取第一个表const sheet = workbook.Sheets[sheetName];const html = XLSX.utils.sheet_to_html(sheet);const newWin = window.open('', '_blank');if (newWin) {newWin.document.write(`<html><head><title>${fileName}</title><style>table { border-collapse: collapse; width: 100%; }th, td { border: 1px solid #ddd; padding: 8px; }th { background-color: #f4f4f4; text-align: left; }</style></head><body>${html}</body></html>`);}return 1; // 表示成功} catch (error) {console.error('Excel 文件预览失败:', error);return 2; // 表示失败}};

每一页都预览

// Excel 文件预览函数
const previewExcelFile = async (url: string) => {try {const response = await fetchWithTimeout(url, timeout);if (!response.ok) throw new Error('网络响应失败');const res = await response.arrayBuffer();const workbook = XLSX.read(new Uint8Array(res), { type: 'array' });// 遍历所有工作表let combinedHtml = '';workbook.SheetNames.forEach((sheetName) => {const sheet = workbook.Sheets[sheetName];const html = XLSX.utils.sheet_to_html(sheet);combinedHtml += `<h2>${sheetName}</h2>${html}`;});// 在新窗口中展示所有工作表内容const newWin = window.open('', '_blank');if (newWin) {newWin.document.write(`<html><head><title>${fileName}</title><style>table { border-collapse: collapse; width: 100%; margin-bottom: 20px; }th, td { border: 1px solid #ddd; padding: 8px; }th { background-color: #f4f4f4; text-align: left; }h2 { text-align: center; margin: 20px 0; }</style></head><body>${combinedHtml}</body></html>`);}return 1; // 表示成功} catch (error) {console.error('Excel 文件预览失败:', error);return 2; // 表示失败}
};

关键字:淘宝拍卖网官网首页_兰州网站建设科技公司_seo sem是指什么意思_推广普通话手抄报内容资料

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: