0

我是 ng-admin 的新手,问题是:是否可以连接到远程服务器来获取数据?如。

var admin = nga.application('QDNS Admin') .baseApiUrl(' http://remote host/');

提前谢谢了

4

2 回答 2

0

在此处输入图像描述

在您的 admin.js 文件中,您必须像这样配置您的 API 端点:

myApp.config(['NgAdminConfigurationProvider', function (nga) {
    // create an admin application
    var admin = nga.application('Name of your Admin')
      .baseApiUrl('http://localhost:8080/api/');
    //if you have an entity called users

    nga.configure(admin);
}
在你的 server.js 中你必须定义一个路由

于 2016-07-27T14:29:23.117 回答
0

在此处输入图像描述

在您的 admin.js 文件中,您必须像这样配置您的 API 端点:

myApp.config(['NgAdminConfigurationProvider', function (nga) {
    // create an admin application
    var admin = nga.application('Name of your Admin')
      .baseApiUrl('http://localhost:8080/api/');
    //if you have an entity called users
    // the API endpoint for this entity will be 'http://localhost:8080/api/users/
    var user = nga.entity('users').identifier(nga.field('_id'));
        user.listView()
.fields([
	nga.field('username'),
    nga.field('email'),
    nga.field('password'),
    nga.field('lastname'),
    nga.field('firstname'),
    nga.field('created_at'),
    nga.field('updated_at')
    ]);
    admin.addEntity(user);
    nga.configure(admin);
}

在你的 server.js 中你必须定义一个路由

于 2016-07-27T14:32:29.213 回答