摘要:
因角色管理需要有用户才能进行(需要将用户从角色中添加,删除)故角色管理代码依托用户管理 只需在Startup服务中添加角色管理即可完成 public void ConfigureServices(IServiceCollection services) { services.AddControlle 阅读全文
摘要:
在实际使用时会发现很多字段在IdentityUser中并不存在,比如增加生日,地址等字段,可在模型类中实现自己的模型并继承自IdentityUser,需要修改的代码为以下类 一、新增模型 using System; using Microsoft.AspNetCore.Identity; names 阅读全文
摘要:
目前用户管理的增删改查及登录功能已经全部实现,但存在一个问题,登录后要取消登录按钮显示退出按钮,未登录应该有注册按钮,现实现过程如下 一、Startup.cs中增加服务 app.UseAuthentication(); 二、修改用户管理主页 注入服务 @inject SignInManager<Id 阅读全文
摘要:
一、建立LoginViewModel视图模型 using System.ComponentModel.DataAnnotations; namespace Shop.ViewModel { public class LoginViewModel { [Required] [Display(Name 阅读全文
摘要:
修改用户不能修改Id及用户名所以创建视图模型时需要去除,新增用户跟修改用户基本视图一直,所以不再做演示 一、新建UpdateUserViewModel视图模型 using System.ComponentModel; using System.ComponentModel.DataAnnotatio 阅读全文
摘要:
用户注册主要有2个方法,1、密码加密 2、用户注册 3、ASP.NET Core Identity 使用密码策略、锁定和 cookie 配置等设置的默认值。 可以在类中重写这些设置 Startup(官方详情点这里) 首先创建CreateUserViewModel视图模型 using System.C 阅读全文
摘要:
在Controllers中新建AccountController,并在构造方法(函数)中注入SignInManager,UserManager UserManager 用户管理(注册,查找,修改,删除用户等) SignInManager 用户登录管理(登录,注销等) private readonly 阅读全文
摘要:
理论知识微软官方文档最完整,最详细,这里只一步步的介绍如何使用,地址:https://docs.microsoft.com/zh-cn/aspnet/core/security/authentication/?view=aspnetcore-3.1 一、新建Mvc项目 二、加入EF依赖 浏览输入en 阅读全文
摘要:
状态管理保存在store\index.js中,简单说明如下 import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) export default new Vuex.Store({ //存放状态 state: { //单个值 Name: 阅读全文
摘要:
在router文件夹下的index.js中加入红色字体代码即可解决 import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRouter) const routes = [ { path: '/', name: 'Log 阅读全文