运行时,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
?