这是基于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 3936107340 upgrade: upgrade abp to 10.0.2 2 months ago
..
LINGYUN/Abp/Saas feat(saas): add saas management support. 4 years ago
FodyWeavers.xml feat(saas): add saas management support. 4 years ago
FodyWeavers.xsd feat(saas): add saas management support. 4 years ago
LINGYUN.Abp.Saas.HttpApi.Client.csproj upgrade: upgrade abp to 10.0.2 2 months ago
README.EN.md feat(docs): 添加Saas模块文档 1 year ago
README.md feat(docs): 添加Saas模块文档 1 year ago

README.md

LINGYUN.Abp.Saas.HttpApi.Client

SaaS HTTP API客户端模块,提供了租户和版本管理的HTTP客户端代理实现。

功能特性

  • HTTP客户端代理
    • ITenantAppService的HTTP客户端实现
    • IEditionAppService的HTTP客户端实现

使用方式

  1. 安装模块
[DependsOn(typeof(AbpSaasHttpApiClientModule))]
public class YourModule : AbpModule
{
}
  1. 配置远程服务
{
  "RemoteServices": {
    "Default": {
      "BaseUrl": "http://localhost:44388/"
    }
  }
}
  1. 注入并使用服务
public class YourService
{
    private readonly ITenantAppService _tenantAppService;
    private readonly IEditionAppService _editionAppService;

    public YourService(
        ITenantAppService tenantAppService,
        IEditionAppService editionAppService)
    {
        _tenantAppService = tenantAppService;
        _editionAppService = editionAppService;
    }
}

更多

English