用yeoman服务器发现ajax请求

时间:2013-02-11 13:32:32

标签: yeoman

运行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对象以执行任何工作。 有没有办法用yeoman server来存根?

1 个答案:

答案 0 :(得分:0)

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