如何将json加载到我的angular.js ng-model中?

MJR*_*III 114 javascript ajax model angularjs

我认为这可能是一个非常明显的问题,但我无法在任何地方找到答案.

我只是想从我的服务器加载一些JSON数据到客户端.现在,我正在使用JQuery通过AJAX调用加载它(下面的代码).

<script type="text/javascript">
var global = new Array();
$.ajax({
    url: "/json",
    success: function(reports){
        global = reports;
        return global;
        }
    });
</script>
Run Code Online (Sandbox Code Playgroud)

它位于html文件中.它到目前为止工作,但问题是我想使用AngularJS.现在,当Angular CAN使用变量时,我无法将整个事物加载到变量中,因此我可以为每个循环使用a.这似乎与"$ Scope"有关,它通常位于.js文件中.

问题是我无法将其他页面的代码加载到.js文件中.Angular的每个例子都只显示如下内容:

function TodoCtrl($scope) {
  $scope.todos = [
    {text:'learn angular', done:true},
    {text:'build an angular app', done:false}];
Run Code Online (Sandbox Code Playgroud)

所以,这很有用,如果IA)想要手动输入所有这些,并且B)如果我事先知道我的所有数据是什么......

我事先不知道(数据是动态的),我不想输入它.

因此,当我尝试使用$ Resource将AJAX调用更改为Angular时,它似乎不起作用.也许我无法弄清楚,但它是一个相对简单的GSON数据的GET请求.

tl:dr我无法让AJAX调用工作,以便将外部数据加载到角度模型中.

jai*_*ime 189

正如Kris所提到的,您可以使用该$resource服务与服务器进行交互,但我得到的印象是您开始使用Angular - 我上周在那里 - 所以我建议您开始直接尝试该$http服务.在这种情况下,您可以调用其get方法.

如果您有以下JSON

[{ "text":"learn angular", "done":true },
 { "text":"build an angular app", "done":false},
 { "text":"something", "done":false },
 { "text":"another todo", "done":true }]
Run Code Online (Sandbox Code Playgroud)

你可以像这样加载它

var App = angular.module('App', []);

App.controller('TodoCtrl', function($scope, $http) {
  $http.get('todos.json')
       .then(function(res){
          $scope.todos = res.data;                
        });
});
Run Code Online (Sandbox Code Playgroud)

get方法返回一个promise对象,第一个参数是成功回调,第二个参数是错误 回调.

当您添加$http作为函数的参数时,Angular会将其作为魔法并将$http资源注入您的控制器.

我在这里举了一些例子


Mik*_*ill 28

这是一个如何将JSON数据加载到Angular模型的简单示例.

我有一个JSON'GET'Web服务,它从Microsoft的Northwind SQL Server数据库的在线副本返回客户详细信息列表.

http://www.iNorthwind.com/Service1.svc/getAllCustomers

它返回一些如下所示的JSON数据:

{ 
    "GetAllCustomersResult" : 
        [
            {
              "CompanyName": "Alfreds Futterkiste",
              "CustomerID": "ALFKI"
            },
            {
              "CompanyName": "Ana Trujillo Emparedados y helados",
              "CustomerID": "ANATR"
            },
            {
              "CompanyName": "Antonio Moreno Taquería",
              "CustomerID": "ANTON"
            }
        ]
    }
Run Code Online (Sandbox Code Playgroud)

..我想用这些数据填充下拉列表,看起来像这样......

角度截图

我希望每个项目的文本来自"CompanyName"字段,并且ID来自"CustomerID"字段.

我该怎么办?

我的Angular控制器看起来像这样:

function MikesAngularController($scope, $http) {

    $scope.listOfCustomers = null;

    $http.get('http://www.iNorthwind.com/Service1.svc/getAllCustomers')
         .success(function (data) {
             $scope.listOfCustomers = data.GetAllCustomersResult;
         })
         .error(function (data, status, headers, config) {
             //  Do some error handling here
         });
}
Run Code Online (Sandbox Code Playgroud)

...用这组JSON数据填充"listOfCustomers"变量.

然后,在我的HTML页面中,我将使用此:

<div ng-controller='MikesAngularController'>
    <span>Please select a customer:</span>
    <select ng-model="selectedCustomer" ng-options="customer.CustomerID as customer.CompanyName for customer in listOfCustomers" style="width:350px;"></select>
</div>
Run Code Online (Sandbox Code Playgroud)

就是这样.我们现在可以在网页上看到我们的JSON数据列表,随时可以使用.

关键是在"ng-options"标签中:

customer.CustomerID as customer.CompanyName for customer in listOfCustomers
Run Code Online (Sandbox Code Playgroud)

让你头脑发热是一种奇怪的语法!

当用户选择此列表中的项目时,"$ scope.selectedCustomer"变量将设置为该Customer记录的ID(CustomerID字段).

可以在此处找到此示例的完整脚本:

使用Angular的JSON数据

麦克风