摘要:
npm config set PUPPETEER_DOWNLOAD_HOST=https://npm.taobao.org/mirrors yarn config set registry https://registry.npm.taobao.org 阅读全文
摘要:
一、下载 1、打开https://aspnetboilerplate.com/Templates 界面如下: 2、选择ASP.NET Core,并且选择 Multi Page Web Application,填写项目名称为:Purchase,并把包含用户管理模块的复选框勾上, 如下图: 点击“Cre 阅读全文
摘要:
一、根据账号取出来当前用户的实体 var userMgr = scope.ServiceProvider.GetRequiredService<UserManager<ApplicationUser>>(); var userModel = userMgr.FindByNameAsync(accou 阅读全文
摘要:
一、添加用户 public ReturnResult Add(JObject jo) { var returnResult = new ReturnResult(); string userId = jo.GetValue("Id").ToString(); string account = jo. 阅读全文
摘要:
一、添加引用 1、添加owin引用 版本:1.0.0.02、添加 Microsoft.Owin.Security.Cookies 版本:4.1.0 3、添加System.IdentityModel.Tokens.Jwt 版本:5.6.04、添加Microsoft.Owin.Security.Open 阅读全文
摘要:
GET _analyze { "tokenizer" : "standard", "text" : "this is a test 13544478956" } GET _analyze { "tokenizer" : "standard", "filter": [{"type": "length" 阅读全文
摘要:
MySql.Data.MySqlClient.MySqlException (0x80004005) Out of memory (Needed*** 上面是当时的报错信息, 下面是解决方法: 将数据库连接配置里的连接池设置为true (;Pooling=true) ***hou;SslMode=N 阅读全文
摘要:
在Elasticsearch.Net里的使用方法如下: 阅读全文
摘要:
先看一下,下面是C#实现提取小括号内的内容的示例代码 string str = "aaaaaaaaa(bbbbbb) 121 (fdsa) 121(aa)2121jlkoihj"; string pattern = @"\(.*?\)";//匹配模式 Regex regex = new Regex( 阅读全文
摘要:
1、建立一个新的类库并写一个类:ImageButton,代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using Sy 阅读全文