分享一个用C#写的Aspose.Words生成word的工具类

公共类

标题样式

字体大小 margin设置 标题 h1-h6

namespace Common.Bo
{public class TitleStyle{/// <summary>/// 标题样式/// </summary>/// <param name="tag"></param>/// <param name="fontSize"></param>/// <param name="margin"></param>public TitleStyle(float fontSize, string margin){FontSize = fontSize;Margin = margin;}/// <summary>/// 标题样式/// </summary>/// <param name="tag"></param>/// <param name="fontSize"></param>/// <param name="margin"></param>public TitleStyle(string tag, float fontSize, string margin){Tag = tag;FontSize = fontSize;Margin = margin;}public string Tag { get; set; } = "h1";public float FontSize { get; set; }public string Margin { get; set; }//"h1","35px","margin-top:0px;"}
}

word的目录信息


namespace Common.Bo
{/// <summary>/// word目录信息/// </summary>public class WordMenuInfo{public string Title { get; set; }public int PageNumber { get; set; }}
}

公共属性

标题级别 对应的标题样式 汉字与数字标题对应关系

using Aspose.Words;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
using System.Text.RegularExpressions;namespace Common.Bo
{public class CommonStyle{#region 标题级别 如一级标题 三级标题protected const int oneTitileLevel = 1;protected const int twoTitileLevel = 2;protected const int threeTitileLevel = 3;protected const int fourTitileLevel = 4;protected const int fiveTitileLevel = 5;#endregion#region 只读的标题样式public static ReadOnlyDictionary<int, TitleStyle> titleDict = new ReadOnlyDictionary<int, TitleStyle>(new Dictionary<int, TitleStyle>{{ 0,new TitleStyle("h1",35,"margin-top:0px;")},{ 1,new TitleStyle("h1",35,"margin-top:0px;")},{ 2,new TitleStyle("h2",33,"margin-top:0px;")},{ 3,new TitleStyle("h3",32,"margin-top:0px;")},{ 4,new TitleStyle("h4",30,"margin-top:0px;")},{ 5,new TitleStyle("h5",28,"margin-top:0px;")},});#endregion#region 文件格式protected static ReadOnlyDictionary<string, string> imageFormatterDict = new ReadOnlyDictionary<string, string>(new Dictionary<string, string>{{ ".jpg",default},{ ".jpeg",default},{ ".png",default},{ ".emf",default},{ ".wmf",default},{ ".bmp",default},});protected static ReadOnlyDictionary<string, string> wordFormatterDict = new ReadOnlyDictionary<string, string>(new Dictionary<string, string>{{ ".doc",default},{ ".docx",default}});#endregion#region 数字与大小汉字对照标 最大可是999=》九百九十九protected static Dictionary<int, string> numberUpCaseDict = new Dictionary<int, string>(){{0,"零"},{1,"一"},{2,"二"},{3,"三"},{4,"四"},{5,"五"},{6,"六"},{7,"七"},{8,"八"},{9,"九"},{10,"十"}};#endregion#region 1-5级 标题格式规则校验与标题级别protected static ReadOnlyDictionary<Regex, int> titleRegexRule= new ReadOnlyDictionary<Regex, int>(new Dictionary<Regex, int>{{new Regex("^\\d{1,3}[\\.、]([^0-9]|s)"),1},{new Regex("^\\d{1,3}[\\.、]\\d{1,3}[\\.、]?([^0-9]|s)"),2},{new Regex("^\\d{1,3}[\\.、]\\d{1,3}[\\.、]\\d{1,3}[\\.、]?([^0-9]|s)"),3},{new Regex("^\\d{1,3}[\\.、]\\d{1,3}[\\.、]\\d{1,3}[\\.、]\\d{1,3}[\\.、]?([^0-9]|s)"),4},{new Regex("^\\d{1,3}[\\.、]\\d{1,3}[\\.、]\\d{1,3}[\\.、]\\d{1,3}[\\.、]\\d{1,3}[\\.、]?([^0-9]|s)"),5}});#endregionstatic CommonStyle(){int curV;StringBuilder sbf;for (int i = 11; i < 900; i++){sbf = new StringBuilder();if ((curV = i / 100) > 0){sbf.Append(numberUpCaseDict[curV] + "百");}if ((curV = i % 100 / 10) > 0){sbf.Append(i > 10 && i < 20 ? "十" : numberUpCaseDict[curV] + "十");}else if (i > 100 && curV > 0){sbf.Append("零");}if ((curV = i % 10) > 0){sbf.Append(numberUpCaseDict[curV]);}numberUpCaseDict.Add(i, sbf.ToString());}}}
}

核心代码

生成word里面相关部分 如标题 文本 表格 图片 目录

using Aspose.Pdf.Operators;
using Aspose.Words;
using Aspose.Words.Drawing;
using Aspose.Words.Tables;
using Common.Bo;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text.RegularExpressions;namespace Common.Util
{/// <summary>/// Aspose.Words /// 生成table  /// 生成标题/// 生成文本  /// 插入图片/// 生成目录/// 获取目录/// 合并word/// 转化pdf /// /// </summary>public class AsposeWordUtil : CommonStyle{/// <summary>/// 创建word document/// </summary>/// <param name="comPath"></param>/// <param name="comDoc"></param>/// <param name="comBuilder"></param>public static void CreateWordDocument(string comPath, out Document comDoc, out DocumentBuilder comBuilder){comDoc = new Document(comPath);comBuilder = new DocumentBuilder(comDoc);comBuilder.PageSetup.PaperSize = PaperSize.A4;//页面设置为A4}/// <summary>/// 创建表格/// </summary>/// <typeparam name="T"></typeparam>/// <param name="curBuilder"></param>/// <param name="bookName"></param>/// <param name="list"></param>/// <param name="columNames"></param>/// <param name="propNames"></param>/// <param name="customFunc"></param>/// <param name="serialNum"></param>/// <param name="titleRemark"></param>public static void CreateTable<T>(DocumentBuilder curBuilder, string bookName, IList<T> list,string[] columNames, string[] propNames, Action<DocumentBuilder> customFunc = null, bool serialNum = false, string titleRemark = null){Type tbc = typeof(T);Dictionary<string, Func<T, string>> titleColumsDict = new Dictionary<string, Func<T, string>>();for (int i = 0; i < columNames.Length; i++){System.Reflection.PropertyInfo propertyInfo = tbc.GetProperty(propNames[i]);titleColumsDict[columNames[i]] = ob => propertyInfo.GetValue(ob, null)?.ToString();}CreateTable(curBuilder, bookName, list, titleColumsDict, customFunc, serialNum, titleRemark);}/// <summary>/// 创建表格/// </summary>/// <typeparam name="T"></typeparam>/// <param name="curBuilder"></param>/// <param name="bookName">word模板标签名称</param>/// <param name="list"></param>/// <param name="titleColumsDict">表格列名与取值的Func</param>/// <param name="customFunc">自定义函数处理 比如生成合计列</param>/// <param name="serialNum">是否需要序号</param>/// <param name="titleRemark">在表格之上需要生成文本信息</param>public static void CreateTable<T>(DocumentBuilder curBuilder, string bookName, IList<T> list, Dictionary<string, Func<T, string>> titleColumsDict, Action<DocumentBuilder> customFunc = null, bool serialNum = false, string titleRemark = null){//移到标签部分if (bookName != null){curBuilder.MoveToBookmark(bookName);}//表格不存在if (!list.Any()){return;}string[] columNames = titleColumsDict.Select(p => p.Key).ToArray();//默认填写表头内容if (!string.IsNullOrWhiteSpace(titleRemark)){curBuilder.StartTable();curBuilder.ParagraphFormat.Alignment = ParagraphAlignment.Left; // RowAlignment.Center;                curBuilder.RowFormat.Height = 20;curBuilder.InsertCell();curBuilder.CellFormat.Width = 500 * (serialNum ? 1 : 0 + columNames.Length);curBuilder.CellFormat.VerticalAlignment = CellVerticalAlignment.Top;curBuilder.CellFormat.Borders[0].LineStyle = LineStyle.Single;curBuilder.CellFormat.Borders[1].LineStyle = LineStyle.None;curBuilder.CellFormat.Borders[2].LineStyle = LineStyle.None;curBuilder.CellFormat.Borders[3].LineStyle = LineStyle.None;//字体大小  curBuilder.Font.Size = 9.5d;//是否加粗  curBuilder.Bold = false;curBuilder.Write(titleRemark);curBuilder.EndRow();curBuilder.EndTable();}Type tbc = typeof(T);Table table = curBuilder.StartTable();curBuilder.ParagraphFormat.Alignment = ParagraphAlignment.Center; // RowAlignment.Center;                curBuilder.RowFormat.Height = 20;//操作序号列if (serialNum){curBuilder.InsertCell();//使用固定的列宽//table.AutoFit(AutoFitBehavior.AutoFitToContents);//Table单元格边框线样式  curBuilder.CellFormat.Borders.LineStyle = LineStyle.Single;//Table此单元格宽度  curBuilder.CellFormat.Width = 500;curBuilder.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//字体大小  curBuilder.Font.Size = 10;//是否加粗  curBuilder.Bold = true;curBuilder.Write("序号");}//添加列头  for (int i = 0; i < columNames.Length; i++){curBuilder.InsertCell();//使用固定的列宽//table.AutoFit(AutoFitBehavior.AutoFitToContents);//Table单元格边框线样式  curBuilder.CellFormat.Borders.LineStyle = LineStyle.Single;//Table此单元格宽度  curBuilder.CellFormat.Width = 500;curBuilder.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;//字体大小  curBuilder.Font.Size = 10;//是否加粗  curBuilder.Bold = true;//向此单元格中添加内容  //builder.Write(dt.Columns[i].ColumnName);curBuilder.Write(columNames[i]);}curBuilder.EndRow();//结束表头行 下次InsertCell开启新的行//添加每行数据  for (int i = 0; i < list.Count; i++){curBuilder.RowFormat.HeightRule = HeightRule.Auto;//操作序号列if (serialNum){//插入Table单元格  curBuilder.InsertCell();//Table单元格边框线样式  curBuilder.CellFormat.Borders.LineStyle = LineStyle.Single;//字体大小  curBuilder.Font.Size = 10;//是否加粗  curBuilder.Bold = false;//向此单元格中添加内容  curBuilder.Write((i + 1).ToString());}foreach (var tcItem in titleColumsDict){//插入Table单元格  curBuilder.InsertCell();//Table单元格边框线样式  curBuilder.CellFormat.Borders.LineStyle = LineStyle.Single;//字体大小  curBuilder.Font.Size = 10;//是否加粗  curBuilder.Bold = false;//向此单元格中添加内容  curBuilder.Write(tcItem.Value.Invoke(list[i]) ?? "");}//Table行结束  curBuilder.EndRow();}if (customFunc != null){customFunc(curBuilder);}curBuilder.EndTable();}/// <summary>/// 设置书签具体的值/// </summary>/// <param name="v"></param>/// <param name="projectName"></param>public static void SetBookVal(Document doc, string bookName, string value){if (!string.IsNullOrEmpty(value)){doc.Range.Bookmarks[bookName].Text = value;}}/// <summary>/// 当前的domBuiler操作 插入图片 ==》追加pdf内容/// </summary>/// <param name="curBuilder"></param>/// <param name="filePath"></param>public static void AppendImageAndPdf(DocumentBuilder curBuilder, string filePath){//文件资源不存在 ==》不插入图片if (!File.Exists(filePath)){return;}//如果是文件夹if (Directory.Exists(filePath)){FileInfo[] fileInfoArray = new DirectoryInfo(filePath).GetFiles();#region 处理图片FileInfo[] fileInfos = fileInfoArray.Where(fi => imageFormatterDict.ContainsKey(fi.Extension.ToLower())).OrderBy(f => f.Name).ToArray();foreach (FileInfo item in fileInfos){AppendImageAndPdf(curBuilder, item.FullName);//将图片文件追加进去}#endregion}else{using (Image image = Image.FromFile(filePath)){curBuilder.InsertBreak(BreakType.SectionBreakNewPage);int imgWidth2 = image.Width;int imgHeight2 = image.Height;//适配宽高AdaptWh(curBuilder, ref imgWidth2, ref imgHeight2);curBuilder.InsertImage(image, RelativeHorizontalPosition.Page, 10.0, RelativeVerticalPosition.Page, 5.0, imgWidth2, imgHeight2, WrapType.None);}}}/// <summary>/// 插入标题或文本/// </summary>/// <param name="comBuilder"></param>/// <param name="title"></param>/// <param name="titleLevel"></param>/// <param name="newPage">插入新的一页  一般为true是防止图片把文字覆盖了</param>/// <param name="marginCss">额外的样式</param>/// <param name="isTitle">是否是1-5级标题 如果不是则用div</param>public static void InsertDefinedTitle(DocumentBuilder comBuilder, string title, int titleLevel, bool newPage = false,string marginCss = null, bool isTitle = true){//防止被图片覆盖if (newPage){comBuilder.InsertBreak(BreakType.SectionBreakNewPage);}TitleStyle curValue = null;curValue = titleDict.TryGetValue(titleLevel, out curValue) ? curValue : new TitleStyle("h1", 35, "margin-top:0px;");marginCss = marginCss ?? (curValue.Margin ?? "margin-top:0px;");if (newPage){marginCss = "margin-top:300px;";}string hmark = isTitle ? curValue.Tag : "div";string fontSize = curValue.FontSize + "px";comBuilder.InsertHtml($"<{hmark} style='text-align:center;font-family:宋体;font-size:{fontSize};{marginCss}'>" + title + $"</{hmark}><br/>");}/// <summary>/// 插入图片/// </summary>/// <param name="curBuilder"></param>/// <param name="filePath"></param>/// <param name="imgWidth"></param>/// <param name="imgHeight"></param>public static void InsertImage(DocumentBuilder curBuilder, string filePath, int? imgWidth = null, int? imgHeight = null, WrapType wrapType = WrapType.None){using (Image image = Image.FromFile(filePath)){int _imgWidth = imgWidth ?? image.Width;int _imgHeight = imgHeight ?? image.Height;//适配宽高if (imgWidth != null && imgHeight != null){AdaptWh(curBuilder, ref _imgWidth, ref _imgHeight);}curBuilder.InsertImage(image, RelativeHorizontalPosition.Page, 10, RelativeVerticalPosition.Page, 5, _imgWidth, _imgHeight, wrapType);}}/// <summary>/// 图片适配(页面宽高)/// </summary>/// <param name="imgWidth"></param>/// <param name="imgHeight"></param>public static void AdaptWh(DocumentBuilder curBuilder, ref int imgWidth, ref int imgHeight){int maxWidth = (int)(curBuilder.PageSetup.PageWidth * 0.92);int maxHeight = (int)(curBuilder.PageSetup.PageHeight * 0.92);//长宽比视频if (imgWidth > maxWidth){imgHeight = Convert.ToInt32(decimal.Multiply(decimal.Divide(maxWidth, (int)imgWidth), (int)imgHeight));imgWidth = maxWidth;}if (imgHeight > maxHeight){imgWidth = Convert.ToInt32(decimal.Multiply(decimal.Divide(maxHeight, (int)imgHeight), (int)imgWidth));imgHeight = maxHeight;}}/// <summary>/// 内容归档并书写页面/// </summary>/// <param name="doc">主doc</param>/// <param name="mergeDoc">被合并的doc</param>/// <param name="titleList">标题信息</param>/// <param name="indexTitle"></param>public static void PlaceOnFile(Document doc, Document mergeDoc){doc.AppendDocument(mergeDoc, ImportFormatMode.KeepSourceFormatting);}/// <summary>/// 获取目录信息/// </summary>/// <param name="doc"></param>public static List<WordMenuInfo> GetDocMenuInfo(Document doc){#region 获取目录信息List<WordMenuInfo> pageInfoList = new List<WordMenuInfo>();foreach (Aspose.Words.Fields.Field field in doc.Range.Fields){if (field.Type.Equals(Aspose.Words.Fields.FieldType.FieldHyperlink)){string value;string[] vs;if (!string.IsNullOrWhiteSpace(field.Result)){//页码内容 此次使用正则获取 标题信息(含页码)value = Regex.Replace(field.Result, @"\s{1,20} PAGEREF _Toc\d+\s+\\h", "").Replace("\u0015", "").Replace("\u0014", "");value = Regex.Replace(value, @"\s{1,2}[^\d]{1,12}$", "###");vs = Regex.Split(value, @"\d{1,12}$");pageInfoList.Add(new WordMenuInfo { Title = vs[0], PageNumber = Convert.ToInt32(value.Replace(vs[0], "").Trim()) });}}}return pageInfoList;#endregion}/// <summary>/// 生成目录/// </summary>public void CreateToc(DocumentBuilder builder, string bookMark = "目录位置"){bool moveSuccess = builder.MoveToBookmark(bookMark);if (moveSuccess){//目录居左builder.ParagraphFormat.Alignment = ParagraphAlignment.Left;//插入目录,这是固定的builder.InsertTableOfContents("\\o \"1-3\" \\h \\z \\u");builder.Document.UpdateFields();// 更新域//builder.Document.UpdatePageLayout();}}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/210050.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

使用 Tailwind CSS 完成导航栏效果

使用 Tailwind CSS 完成导航栏效果 本文将向您介绍如何使用 Tailwind CSS 创建一个漂亮的导航栏。通过逐步演示和示例代码&#xff0c;您将学习如何使用 Tailwind CSS 的类来设计和定制导航栏的样式。 准备工作 在开始之前&#xff0c;请确保已经安装了 Tailwind CSS。如果没…

求小球落地5次后所经历的路程和第5次反弹的高度

假设一个球从任意高度自由落下&#xff0c;每次落地后反跳回原高度的一半; 再落下, 求它在第5次落地时&#xff0c;共经历多少米?第5次反弹多高&#xff1f; 数据范围&#xff1a;输入的小球初始高度满足1≤n≤1000 &#xff0c;且保证是一个整数。 输入描述&#xff1a;输入…

JavaScript-自定义属性

自定义属性 语法&#xff1a; 定义&#xff1a; <div class"box" data-id"666"></div> //获取&#xff1a; <script>const div document.querySelector(.box);console.log(div.dateset.id);//输出666 </script>

Node CLI 之 Commander.js (1)

官网地址&#xff1a; https://github.com/tj/commander.js/blob/f1ae2db8e2da01d6efcbfd59cbf82202f864b0c1/Readme_zh-CN.md Commander.js是node.js命令行界面的完整解决方案 开始 新建一个node工程执行 npm install commanderpackage.json中新增代码添加 #! /usr/bin/env…

Linux 详细介绍strace命令

system call(系统调用)是程序向内核请求服务的一种编程方式&#xff0c;strace是一个功能强大的工具&#xff0c;可以跟踪用户进程和 Linux 内核之间的交互。 要了解操作系统如何工作&#xff0c;首先需要了解系统调用如何工作。操作系统的主要功能之一是为用户程序提供了一个…

HJ94 记票统计

题目&#xff1a; HJ94 记票统计 题解&#xff1a; 利用哈希表&#xff0c;投票是按姓名从哈希表中取出对应的票数&#xff0c;如果不在哈希表内证明为无效。 public class Main {public static void main(String[] args) {Scanner in new Scanner(System.in);int n Inte…

PyQt6 QTimeEdit时间控件

​锋哥原创的PyQt6视频教程&#xff1a; 2024版 PyQt6 Python桌面开发 视频教程(无废话版) 玩命更新中~_哔哩哔哩_bilibili2024版 PyQt6 Python桌面开发 视频教程(无废话版) 玩命更新中~共计39条视频&#xff0c;包括&#xff1a;2024版 PyQt6 Python桌面开发 视频教程(无废话…

C++新经典模板与泛型编程:将trait类模板用作模板参数

将trait类模板用作模板参数 template<typename T> struct SumFixedTraits;template<> struct SumFixedTraits<char> {using sumT int;static sumT initValue() {return 0;} };template<> struct SumFixedTraits<int> {using sumT __int64;sta…

Proteus仿真--基于DAC0808设计的直流电机调速器

本文介绍基于DAC0808设计的直流电机调速器设计&#xff08;完整仿真源文件及代码见文末链接&#xff09; 设置按键A-H按键&#xff0c;每个按键分别对应不同的速度&#xff0c;按下后电机按照设定速度转动 仿真图如下 仿真运行视频 Proteus仿真--基于DAC0808设计的直流电机调…

互联网数据传输原理 |OSI七层网络参考模型

网络模型 OSI 网络参考模型&#xff0c;仅作为参考&#xff0c;也就是说OSI网络实际中并不使用。我们只是把OSI网络模型作为参考&#xff0c;在网络出现问题的时候&#xff0c;可以从一个宏观的整体去分析和解决问题。而且搭建网络的时候也并不一定需要划分为7层 但是当今互联…

【uniapp】小程序中input输入框的placeholder-class不生效解决办法

问题描述 uniapp微信小程序&#xff0c;使用input组件时&#xff0c;想要改变提示词 placeholder 的样式&#xff0c;但是使用placeholder-class 改变不了 如下&#xff1a; <input type"text" placeholder"搜索" placeholder-class"placeholde…

2024最新金三银四软件测试面试题

一直以来大大小小参与过不少面试&#xff0c;遇到过不少坑&#xff0c;但是没来的及好好总结汇总下。现在把之前遇到的问题汇总下&#xff0c;希望以后自己能加深印象。 1、appium 怎么定位toast弹框 appium1.6以后回答需要升级u2进行定位。 2、什么是事务&#xff0c;知道事…

PADS9.5封装库转换为AD库

1、打开PADS Layout&#xff0c;File – Library&#xff0c;选中usr&#xff0c;如下图&#xff1a; 2、封装– 导入&#xff0c;选中你的 .d后缀文件(也就是PADS的封装文件)&#xff0c;打开。 3、元件 – 新建 – PCB封装 - 分配 - 确定。 4、&#xff0c;选择“斜线”…

Laya2.13.3接入第三方库Socket.io

服务端&#xff1a; 1.新建一个文件夹&#xff0c;使用npm.init -y创建node工程 2.在控制台使用以下代码下载Socket.io npm install socket.io 3.创建一个app.js的文件&#xff0c;将以下代码填入 import { Server } from "socket.io"; import { createServer }…

Linux学习笔记3 xshell(lnmp)

xshell能连接虚拟机的前提是真机能够ping通虚拟机网址 装OpenSSL依赖文件 [rootlocalhost nginx-1.12.2]# yum -y install openssl pcre-devel 依赖检测[rootlocalhost nginx-1.12.2]# ./configure [rootlocalhost nginx-1.12.2]# yum -y install zlib [rootlocalhost n…

【腾讯云 HAI域探秘】StableDiffusionWebUI 让我找到了宫崎骏动漫里的夏天

目录 前言一、HAI二、应用场景三、构建 Stable Diffusion 模型1、新建HAI应用2、StableDiffusionWebUI&#xff08;1&#xff09;功能介绍&#xff08;2&#xff09;页面转中文&#xff08;3&#xff09;AI绘图① 正向提示词语② 反向提示词③ “” 、“ AND”、“|” 用法④ 权…

自定义函数参数传递问题

最近&#xff0c;被一个函数调用参数传递的问题困惑了一阵。自己写的解释程序&#xff0c;一直用的好好的。在暗自得意的过程中&#xff0c;突然出现了bug&#xff0c;被泼了一头冷水。当然&#xff0c;bug是在无意中被发现的&#xff0c;确定以后则可以编制专用的代码来揭示它…

重积分的应用@物体对外部质点的引力问题

文章目录 引力(*)分析两质点间的引力公式三重积分计算引力薄片情形计算例 引力(*) 这里讨论的是:空间一物体对于物体外一点 P 0 ( x 0 , y 0 , z 0 ) P_{0}(x_0,y_0,z_0) P0​(x0​,y0​,z0​)处单位质量的质点的引力 分析 仍然使用元素法, 设占有空间有界闭区域 Ω \Omega …

网络协议与 IP 编址

网络协议与 IP 编址 之前大概了解过了网络的一些基础概念&#xff0c;见文章&#xff1a; 网络基础概念。 之前简单了解OSI模型分层&#xff1a; TCP/IP模型OSI模型TCP/IP对等模型应用层应用层表示层应用层会话层主机到主机层传输层传输层因特网层网络层网络层网络接入层数据链…

jsonwebtoken生成token和解析

先上npm地址 jsonwebtoken&#xff1a;jsonwebtoken - npm express-jwt&#xff1a;express-jwt - npmps const express require(express); const jwt require(jsonwebtoken); const { expressjwt: expressJWT} require(express-jwt)const app express();// 设置密钥 co…