phpexcel 导出循环增加列数_基于.NetCore3.1搭建项目系列 —— 使用Swagger导出文档 (补充篇)...
生活随笔
收集整理的這篇文章主要介紹了
phpexcel 导出循环增加列数_基于.NetCore3.1搭建项目系列 —— 使用Swagger导出文档 (补充篇)...
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
前言
? 在上一篇導(dǎo)出文檔番外篇中,我們已經(jīng)熟悉了怎樣根據(jù)json數(shù)據(jù)導(dǎo)出word的文檔,生成接口文檔,而在這一篇,將對(duì)上一篇進(jìn)行完善補(bǔ)充,增加多種導(dǎo)出方式,實(shí)現(xiàn)更加完善的導(dǎo)出功能。
回顧
? 1. 獲取Swagger接口文檔的Json文件
? 2. 解析Json文件數(shù)據(jù)填充到Html的表格中
? 3.根據(jù)生成的html轉(zhuǎn)work文檔
功能
開(kāi)始
?根據(jù)生成的html轉(zhuǎn)work文檔
/// /// 靜態(tài)頁(yè)面轉(zhuǎn)文件/// /// 靜態(tài)頁(yè)面html/// 文件類(lèi)型/// 上下文類(lèi)型/// public Stream SwaggerConversHtml(string html, string type, out string contenttype){string fileName = Guid.NewGuid().ToString() + type;//文件存放路徑string webRootPath = _hostingEnvironment.WebRootPath;string path = webRootPath + @"\Files\TempFiles\";var addrUrl = path + $"{fileName}";
FileStream fileStream = null;var provider = new FileExtensionContentTypeProvider();
contenttype = provider.Mappings[type];try
{if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}var data = Encoding.Default.GetBytes(html);var stream = ByteHelper.BytesToStream(data);//創(chuàng)建Document實(shí)例
Document document = new Document();//加載HTML文檔 document.LoadFromStream(stream, FileFormat.Html, XHTMLValidationType.None);switch (type)
{case ".docx":
document.SaveToFile(addrUrl, FileFormat.Docx);break;case ".pdf":
document.SaveToFile(addrUrl, FileFormat.PDF);break;case ".html"://document.SaveToFile(addrUrl, FileFormat.Html);//當(dāng)然了,html 如果不用spire,也可以直接生成
FileStream fs = new FileStream(addrUrl, FileMode.Append, FileAccess.Write, FileShare.None);//html直接寫(xiě)入不用spire.doc
StreamWriter sw = new StreamWriter(fs); // 創(chuàng)建寫(xiě)入流
sw.WriteLine(html); // 寫(xiě)入Hello World
sw.Close(); //關(guān)閉文件 fs.Close();break;case ".xml":
document.SaveToFile(addrUrl, FileFormat.Xml);break;case ".svg":
document.SaveToFile(addrUrl, FileFormat.SVG);break;default://保存為Word document.SaveToFile(addrUrl, FileFormat.Docx);break;
}
document.Close();
fileStream = File.Open(addrUrl, FileMode.OpenOrCreate);var filedata = ByteHelper.StreamToBytes(fileStream);var outdata = ByteHelper.BytesToStream(filedata);return outdata;
}catch (Exception)
{throw;
}finally
{if (fileStream != null)
fileStream.Close();if (File.Exists(addrUrl))
File.Delete(addrUrl);//刪掉文件 }
}
增加導(dǎo)出按鈕
function LoadExportApiWordBtn() {$(".information-container").height(240);
$(".topbar").height(35);var btnExport = "" +
"導(dǎo)出離線(xiàn)文檔" +
"" +
"" +
"" +
"導(dǎo)出 Word" +
"" +
"" +
"導(dǎo)出 PDF" +
"" +
"" +
"導(dǎo)出 Html" +
"" +
"" +
"導(dǎo)出 Xml" +
"" +
"" +
"導(dǎo)出 Svg" +
"" +
"" +
"" +
"";//information-container這個(gè)元素是swagger后期動(dòng)態(tài)渲染出來(lái)的,所有這里要加個(gè)循環(huán)判斷。//第一次進(jìn)來(lái)如果有這個(gè)class直接加載按鈕退出if ($("*").hasClass("information-container")) {
$(".information-container").append(btnExport);return;
}//沒(méi)有元素等待元素出現(xiàn)在加載按鈕
timerLoadExportBtn = setInterval(function () {if ($("*").hasClass("information-container")) {
$(".information-container").append(btnExport);
console.log("load ok");
window.clearInterval(timerLoadExportBtn);return;
}
console.log("loading");
}, 788);
}
效果
總結(jié)
?1. 通過(guò)Swagger 導(dǎo)出各類(lèi)的說(shuō)明文檔,可以根據(jù)自己的html模板生成各式的word樣式文檔說(shuō)明。
?2 .注:搜索關(guān)注公眾號(hào)【DotNet技術(shù)谷】--回復(fù)【文檔生成器】,可獲取本篇Swagger生成文檔文件。
?3. 參考資料:Spire.Doc文件?、Swagger開(kāi)源地址
總結(jié)
以上是生活随笔為你收集整理的phpexcel 导出循环增加列数_基于.NetCore3.1搭建项目系列 —— 使用Swagger导出文档 (补充篇)...的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。