基于 AngularJs 的前端应用程序如何使用位于 Tomacat 7 服务器上的基于 Spring MVC 的后端应用程序
How can front-end application based on AngularJs consume backend application based on Spring MVC whic is on Tomacat 7 server
我正在尝试使用 AngularJS 作为前端开发 Web 应用程序,它是独立于后端的应用程序 Spring Tomcat 7.How 上的 MVC 我的前端可以吗使用后端 ?
考虑使用 $http or $resource 来使用您的 RESTful Web 服务。
HTTP 简单 GET 请求示例:
$http({
method: 'GET',
url: '/someUrl'
}).then(function successCallback(response) {
// this callback will be called asynchronously
// when the response is available
}, function errorCallback(response) {
// called asynchronously if an error occurs
// or server returns response with an error status.
})
资源示例:
var User = $resource('/user/:userId', {userId:'@id'});
var user = User.get({userId:123}, function() {
user.abc = true;
user.$save();
})
我正在尝试使用 AngularJS 作为前端开发 Web 应用程序,它是独立于后端的应用程序 Spring Tomcat 7.How 上的 MVC 我的前端可以吗使用后端 ?
考虑使用 $http or $resource 来使用您的 RESTful Web 服务。
HTTP 简单 GET 请求示例:
$http({
method: 'GET',
url: '/someUrl'
}).then(function successCallback(response) {
// this callback will be called asynchronously
// when the response is available
}, function errorCallback(response) {
// called asynchronously if an error occurs
// or server returns response with an error status.
})
资源示例:
var User = $resource('/user/:userId', {userId:'@id'});
var user = User.get({userId:123}, function() {
user.abc = true;
user.$save();
})