这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
cKey 665d7f892d feat(oss): update README.md 4 years ago
..
LINGYUN/Abp/BlobStoring/OssManagement non-existent oss-objects should return null 4 years ago
FodyWeavers.xml feat(oss): update README.md 4 years ago
FodyWeavers.xsd feat(workflow): mail supports sending attachments through the oss-management module 4 years ago
LINGYUN.Abp.BlobStoring.OssManagement.csproj feat(workflow): mail supports sending attachments through the oss-management module 4 years ago
README.md feat(oss): update README.md 4 years ago

README.md

LINGYUN.Abp.BlobStoring.OssManagement

abp框架对象存储提供者IBlobProvider的Oss管理模块实现

配置使用

模块按需引用, 依赖于OssManagement模块, 所以需要配置远端Oss管理模块的客户端代理

事先定义appsettings.json文件

{
  "OssManagement": {
    "Bucket": "你定义的BucketName"
  },
  "RemoteServices": {
    "AbpOssManagement": {
      "BaseUrl": "http://127.0.0.1:30025",
      "IdentityClient": "InternalServiceClient",
      "UseCurrentAccessToken": false
    }
  },
  "IdentityClients": {
    "InternalServiceClient": {
      "Authority": "http://127.0.0.1:44385",
      "RequireHttps": false,
      "GrantType": "client_credentials",
      "Scope": "lingyun-abp-application",
      "ClientId": "InternalServiceClient",
      "ClientSecret": "1q2w3E*"
    }
  }
}

[DependsOn(typeof(AbpBlobStoringOssManagementModule))]
public class YouProjectModule : AbpModule
{
  // other
}