当我声明一个函数在控制器中调用时,为什么它失败了

时间:2015-06-08 08:38:56

标签: angularjs

如果取消注释" //"它将无法绑定来自http响应的数据行,为什么呢?它应该是一样的,对吧?

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

m.controller('UserList', function($scope) {

//  $scope.getdata = function() {

        var u = "http://wisebe.duapp.com/admin?queryusers";
        var userList = this;
        var body = {
            activityid: "10",
            checkin: $('#checkin').val()
        };
        $.ajax({
            url: u,
            type: "post",
            async: false,
            data: body,
            success: function(data) {
                userList.users = data;
            }
        });
//  };

//  $scope.getdata();

    $('#checkin').change(function() {
//      $scope.$apply();
    });

});

0 个答案:

没有答案