我正在开发一个带有 CURD 操作的 angulatJS 应用程序。
在我的应用程序中,我将创建、编辑和删除记录!我可以做到这一点,但我无法在模型中绑定数据,因为我需要重新启动浏览器才能看到更新。
这是我的代码...任何输入将不胜感激。
这是我的主要js
angular.module('serviceClient', ['serviceClient.services','serviceClient.controllers','ngRoute']).
config(['$routeProvider', function ($routeProvider) {
$routeProvider.when('/home', {templateUrl: 'pages/home.html'});
$routeProvider.when('/testcases-list', {templateUrl: 'pages/testlist.html', controller: 'serviceCtrl'});
$routeProvider.when('/test-edit/:id', {templateUrl: 'pages/test-details.html', controller: 'TCDetailCtrl'});
$routeProvider.when('/testcases-creation', {templateUrl: 'pages/testcases-creation.html', controller: 'TCCreationCtrl'});
$routeProvider.otherwise({redirectTo: '/home'});
}]);
'use strict';
var app = angular.module('serviceClient.controllers', []);
app.run(function ($rootScope, $templateCache) {
$rootScope.$on('$viewContentLoaded', function () {
$templateCache.removeAll();
});
});
//list
app.controller('serviceCtrl', [ 'DemoService','DemoService2', '$scope', '$location',
function(DemoService,DemoService2, $scope, $location) {
$scope.editTestCase= function(userId) {
$location.path('/test-edit/'+userId);
};
$scope.deleteTestCase = function(userId) {
DemoService2.remove({ id: userId });
};
$scope.createNewTestCase = function() {
$location.path('/testcases-creation');
};
DemoService.query(function(DemoService) {
$scope.response = DemoService;
});
} ]);
//create
app.controller('TCCreationCtrl', [ '$scope', 'DemoService', '$location',
function($scope, DemoService, $location) {
$scope.createNewTestCase = function() {
DemoService.create($scope.testCase);
$location.path('/testcases-list');
}
} ]);
//update
app.controller('TCDetailCtrl', [ '$scope', '$routeParams', 'DemoService2',
'$location', function($scope, $routeParams, DemoService2, $location) {
//alert("update");
$scope.updateTestCase = function() {
DemoService2.update($scope.testCase);
$location.path('/testcases-list');
};
$scope.cancel = function() {
$location.path('/testcases-list');
};
$scope.testCase = DemoService2.show({
id : $routeParams.id
});
} ]);
'use strict';
var app = angular.module('serviceClient.services', [ 'ngResource' ]);
app.factory('DemoService', function($resource) {
return $resource('http://localhost:8080/', {}, {
query : {method : 'GET',params : {},isArray : true},
create: {method: 'POST'}
});
});
app.factory('DemoService2', function($resource) {
return $resource('http://localhost:8080/:id', {}, {
show: { method: 'GET' },
update: { method: 'PUT', params: {id:'@id'} },
remove:{method: 'DELETE',params: {id:'@id'} }
});
});
在这里,如果进行任何插入/更新/删除操作,我想立即在前端和后端看到。
我尝试重新加载,$promise ......但我阻止了一些地方!
谢谢