如何在angular.js控制器中调用兼容Ajax的WCF服务?

我试图结合Jquery和Angular.JS,类似于:

app.controller('ListUsersController', function () {
    var me = this;

    this.listusers = [];

    this.fill = function () {
       $.getJSON("Contact.svc/getjemploye", function (data) {
           me.listusers.push({id:"1",name:"Vinc"});

       });
    };
});


当我将用户推入listusers时,控制器似乎看不到我正在向列表中添加内容,因此它不再显示列表(在html中,我看不到新用户推)。

最佳答案

Angular有自己的一套Ajax调用程序。

$http({ method: "GET", url: "http://yoururlhere.com")
.success(function (response) {
  alert("success!");
});

09-26 05:02