摘要:
public class WebHelper { #region ResolveUrl(解析相对Url) /// <summary> /// 解析相对Url /// </summary> /// <param name="relativeUrl">相对Url</param> public stati 阅读全文
摘要:
使用NSwag.AspNetCore启用swagger:微软官网介绍的入门方法 NSwag 提供了下列功能: 能够使用 Swagger UI 和 Swagger 生成器。 灵活的代码生成功能。 借助 NSwag,无需使用现有 API。也就是说,可使用包含 Swagger 的第三方 API,并生成客户 阅读全文
摘要:
全局跨域 在Startup类的ConfigureServices方法里面注入服务: services.AddCors(m => m.AddPolicy("any", a =>a.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader())); 在Startu 阅读全文
摘要:
using Microsoft.AspNetCore.Http; using System.Threading.Tasks; namespace Core.Api { /// <summary> /// 跨域中间件 /// </summary> public class CorsMiddleware 阅读全文
摘要:
一:使用swagger基本使用后台API 使用NuGet 包管理器下载Swashbuckle.AspNetCore 在Startup类的ConfigureServices方法里面注入服务: public void ConfigureServices(IServiceCollection servic 阅读全文
摘要:
首先需要添加引用QrCodeNet.dll 然后引入Gma.QrCodeNet.Encoding命名空间。 public static Bitmap createQRCImg(string s, int ew = 10, int eh = 10, Color[] colors = null, Err 阅读全文
摘要:
发出一个固定金额的红包,由若干个人来抢,需要满足哪些规则? 1.所有人抢到金额之和等于红包金额,不能超过,也不能少于。2.每个人至少抢到一分钱。3.要保证所有人抢到金额的几率相等。 参考:程序员小灰——漫画:如何实现抢红包算法?剩余红包金额为M,剩余人数为N,那么有如下公式: 每次抢到的金额 = 随 阅读全文
摘要:
getUnlimited 获取小程序码,适用于需要的码数量极多的业务场景。通过该接口生成的小程序码,永久有效,数量暂无限制。 小程序官方文档 wxacode.getUnlimited 阅读全文
摘要:
HTML代码: 然后添加点样式: <style> #btnfile, #btnupload { width: 120px; height: 30px; background: #2ECC71; text-align: center; margin: 10px auto; border: none; 阅读全文
摘要:
转载來源:简书 转载作者:幻凌风 转载来源:https://www.jianshu.com/p/e1bab83e87ce 阅读全文