上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 29 下一页
摘要: npm config set PUPPETEER_DOWNLOAD_HOST=https://npm.taobao.org/mirrors yarn config set registry https://registry.npm.taobao.org 阅读全文
posted @ 2020-03-13 09:41 星星c# 阅读(854) 评论(0) 推荐(0) 编辑
摘要: 一、下载 1、打开https://aspnetboilerplate.com/Templates 界面如下: 2、选择ASP.NET Core,并且选择 Multi Page Web Application,填写项目名称为:Purchase,并把包含用户管理模块的复选框勾上, 如下图: 点击“Cre 阅读全文
posted @ 2020-03-07 18:16 星星c# 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 一、根据账号取出来当前用户的实体 var userMgr = scope.ServiceProvider.GetRequiredService<UserManager<ApplicationUser>>(); var userModel = userMgr.FindByNameAsync(accou 阅读全文
posted @ 2020-02-15 21:00 星星c# 阅读(968) 评论(0) 推荐(0) 编辑
摘要: 一、添加用户 public ReturnResult Add(JObject jo) { var returnResult = new ReturnResult(); string userId = jo.GetValue("Id").ToString(); string account = jo. 阅读全文
posted @ 2020-02-15 20:33 星星c# 阅读(1231) 评论(0) 推荐(0) 编辑
摘要: 一、添加引用 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 阅读全文
posted @ 2020-02-11 10:32 星星c# 阅读(1583) 评论(11) 推荐(0) 编辑
摘要: GET _analyze { "tokenizer" : "standard", "text" : "this is a test 13544478956" } GET _analyze { "tokenizer" : "standard", "filter": [{"type": "length" 阅读全文
posted @ 2020-01-17 10:17 星星c# 阅读(3595) 评论(0) 推荐(0) 编辑
摘要: MySql.Data.MySqlClient.MySqlException (0x80004005) Out of memory (Needed*** 上面是当时的报错信息, 下面是解决方法: 将数据库连接配置里的连接池设置为true (;Pooling=true) ***hou;SslMode=N 阅读全文
posted @ 2020-01-15 15:58 星星c# 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 在Elasticsearch.Net里的使用方法如下: 阅读全文
posted @ 2020-01-08 17:30 星星c# 阅读(786) 评论(0) 推荐(0) 编辑
摘要: 先看一下,下面是C#实现提取小括号内的内容的示例代码 string str = "aaaaaaaaa(bbbbbb) 121 (fdsa) 121(aa)2121jlkoihj"; string pattern = @"\(.*?\)";//匹配模式 Regex regex = new Regex( 阅读全文
posted @ 2019-12-31 10:50 星星c# 阅读(3445) 评论(0) 推荐(0) 编辑
摘要: 1、建立一个新的类库并写一个类:ImageButton,代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using Sy 阅读全文
posted @ 2019-12-27 15:58 星星c# 阅读(2124) 评论(0) 推荐(1) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 29 下一页