摘要:
# netCore中Swagger版本控制 ### 添加枚举类型 定义版本号 ```c# /// /// 版本控制 /// public enum ApiVersion { /// /// v1版本 /// V1 = 1, /// /// v2版本 /// V2 = 2 } ``` ### 注册服务 阅读全文
摘要:
### 仓储说明 SqlSugar5.0仓储模式可以让你的方法更加的规范,需要什么方法都封装到仓储中,下次就能重复使用,并且能很好的和你业务拆分开, 这种设计模式简单粗暴用起来也方便 官方文档:[仓储定义 - SqlSugar 5x - .NET果糖网 (donet5.com)](https://w 阅读全文
摘要:
安装Nuget Install-Package MiniProfiler.AspNetCore.Mvc startup.cs #region MiniProfiler services.AddMiniProfiler(options => options.RouteBasePath = "/prof 阅读全文
摘要:
nuget安装 Microsoft.AspNetCore.Authentication.JwtBearer 3.1.0 版本 appsettings.json "Authentication": { //jwt "JwtBearer": { "IsEnabled": "true", "Securit 阅读全文
摘要:
创建 1 创建一个WebService的项目 2 添加Web服务(ASMX) 3 启动查看是否正常 实列 public class WebService1 : System.Web.Services.WebService { SoundPlayer player = new SoundPlayer( 阅读全文
摘要:
方案 let table = document.querySelector("body"); if (table) { table.setAttribute("style", "background-color:#f7f7f7"); } // document // .querySelector(" 阅读全文
摘要:
1.安装 $ npm install --save nprogress $ yarn add nprogress 2.使用 App.vue <script lang="ts"> import NProgress from "nprogress"; import "nprogress/nprogres 阅读全文
摘要:
安装组件 npm install vue-quill-editor -S 组件挂载 有两种挂载方式: 全局挂载 和 在组件中挂载,根据自己的项目需求选择,一般用到富文本编辑都是在某一个项目中 全局挂载 // main.js import Vue from 'vue' import VueQuillE 阅读全文
摘要:
新建index.js import Vue from "vue"; /** * 回到顶部功能实现过程: * 1. 获取页面当前距离顶部的滚动距离(虽然IE不常用了,但还是需要考虑一下兼容性的) * 2. 计算出每次向上移动的距离,用负的滚动距离除以5,因为滚动的距离是一个正数,想向上移动就是做一个减 阅读全文
摘要:
下载tff格式的字体 assets中新建文件夹fonts,把tff字体文件放在fonts,并在assets/css中新建font.css @font-face { font-family: "Acy"; src: url('../fonts/Acy.ttf') format('truetype'); 阅读全文