如何配置 ng-admin 以使用多个不同的 URI
how to configure ng-admin to work with several different URIs
如何配置 ng-admin
以使用多个不同的 URI 端点?
例如
var admin = nga.application('My Admin')
.baseApiUrl('http://localhost:6007/api/v1/');
让我使用 localhost:6007
作为我的 URI
我希望能够为其他实体使用额外的 URI
(面向服务的架构 - 并非所有实体都来自相同的 URI)
它也可以在实体上配置 -
var entity = nga.entity('entity').baseURL('http://localhost:6007/api/v1/');
如何配置 ng-admin
以使用多个不同的 URI 端点?
例如
var admin = nga.application('My Admin')
.baseApiUrl('http://localhost:6007/api/v1/');
让我使用 localhost:6007
作为我的 URI
我希望能够为其他实体使用额外的 URI
(面向服务的架构 - 并非所有实体都来自相同的 URI)
它也可以在实体上配置 -
var entity = nga.entity('entity').baseURL('http://localhost:6007/api/v1/');