abp vnext获取当前用户信息

前端获取

框架本身定义了返回当前用户信息api接口,我们可以直接去调用
api/abp/application-configuration
注意需要在接口上添加验证注解
aspnet-core\modules\Volo.Identity\src\Volo.Abp.Identity.HttpApi\Volo\Abp\Identity\ProfileController.cs
abp vnext获取当前用户信息_第1张图片abp vnext获取当前用户信息_第2张图片

abp vnext获取当前用户信息_第3张图片

后台获取

ICurrentUser 是主要的服务,用于获取有关当前活动的用户信息.

示例: 注入 ICurrentUser 到服务中:

using System;
using Volo.Abp.DependencyInjection;
using Volo.Abp.Users;

namespace AbpDemo
{
    public class MyService : ITransientDependency
    {
        private readonly ICurrentUser _currentUser;

        public MyService(ICurrentUser currentUser)
        {
            _currentUser = currentUser;
        }
        
        public void Foo()
        {
            Guid? userId = _currentUser.Id;
        }
    }
}

公共基类已经将此服务作为基本属性注入. 例如你可以直接在应用服务中使用 CurrentUser 属性:

using System;
using Volo.Abp.Application.Services;

namespace AbpDemo
{
    public class MyAppService : ApplicationService
    {
        public void Foo()
        {
            Guid? userId = CurrentUser.Id;
        }
    }
}

你可能感兴趣的:(abp,vnext获取用户信息)