运行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
来存根?