1

运行时,yeoman server我希望能够创建 URL 存根来模拟后端响应。

以下面的控制器为例:

angularApp.controller('AppuserListCtrl', function ($scope, $http) {

        $http({method: 'GET', url: '/admin/appuser/rest/?accept=json'})
        .success(function (data, status, headers, config) {
            $scope.page = data;
        })
        .error(function (data, status, headers, config) {
            $scope.error = data;
        });
});

这个控制器依赖于一个 ajax 请求来检索一个 json 对象来做任何工作。有没有办法用 stub 那些yeoman server

4

1 回答 1

0

您可以使用$httpBackend来模拟 $http 对象。

于 2013-02-12T22:08:23.983 回答