angular.js调用兼容ajax的WCF服务

时间:2014-08-06 14:27:38

标签: javascript .net ajax angularjs wcf

如何在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中,我看不到新的用户我刚推了。)

1 个答案:

答案 0 :(得分:1)

Angular有自己的一组Ajax调用者。

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