• 创建一个用于访问子租户自定义接口的客户端。

    Parameters

    • childTenantId: string

      子租户的 id

    Returns "http".Client

    Example

    import * as http from 'http';
    let childTenantId = "动态获取子租户的ID";
    let cli = http.newChildClient(childTenantId);
    let resp = cli.get("/service/WD__D/0.0.1/getsimple");
    console.log(resp.body);