这是基于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.
 
 
 
 
 
 
colin 0c5a11680b upgrade: upgrade abp framework to 9.0.4 1 year ago
..
LINGYUN/Abp/OssManagement upgrade abp framework to 8.2.0 2 years ago
FodyWeavers.xml update Dockerfile 4 years ago
FodyWeavers.xsd feat(workflow): mail supports sending attachments through the oss-management module 4 years ago
LINGYUN.Abp.OssManagement.HttpApi.Client.csproj upgrade: upgrade abp framework to 9.0.4 1 year ago
README.EN.md feat(docs): 添加Oss管理模块文档 1 year ago
README.md feat(docs): 添加Oss管理模块文档 1 year ago

README.md

LINGYUN.Abp.OssManagement.HttpApi.Client

对象存储管理HTTP API客户端

功能

  • 提供对象存储管理的HTTP API客户端代理
  • 实现远程服务调用
  • 支持动态API客户端代理生成

使用方式

  1. 添加模块依赖:
[DependsOn(typeof(AbpOssManagementHttpApiClientModule))]
public class YourModule : AbpModule
{
    // ...
}
  1. 配置远程服务:
{
  "RemoteServices": {
    "Default": {
      "BaseUrl": "http://your-api-server/"
    }
  }
}

可用服务

  • IOssContainerAppService:容器管理服务
  • IOssObjectAppService:对象管理服务
  • IPublicFileAppService:公共文件服务
  • IPrivateFileAppService:私有文件服务
  • IShareFileAppService:共享文件服务
  • IStaticFilesAppService:静态文件服务

链接