The article presents code samples that one could use to quickly get started with posting JSON data using AngularJS $http service while working with SpringMVC web application. The demo for the code below could be found on this page, http://hello-angularjs.appspot.com/angularjs-http-service-ajax-post-json-data-code-example. Earlier, I posted this article where one could post the html data (text/html) using AJAX & SpringMVC.
Following are key steps:
Following are key steps:
@RequestMapping(value = "/angularjs-http-service-ajax-post-json-data-code-example", method = RequestMethod.GET) public ModelAndView httpServicePostJSONDataExample( ModelMap model ) { return new ModelAndView("httpservice_post_json"); }
@RequestMapping(value = "/savecompany_json", method = RequestMethod.POST) public @ResponseBody String saveCompany_JSON( @RequestBody Company company ) { // // Code processing the input parameters // return "JSON: The company name: " + company.getName() + ", Employees count: " + company.getEmployees() + ", Headoffice: " + company.getHeadoffice(); }
package com.vitalflux.core; public class Company { private String name; private long employees; private String headoffice; public String getName() { return name; } public void setName(String name) { this.name = name; } public Long getEmployees() { return employees; } public void setEmployees(Long employees) { this.employees = employees; } public String getHeadoffice() { return headoffice; } public void setHeadoffice(String headoffice) { this.headoffice = headoffice; } }
Following code could be used to post JSON data to the server. Following assumes that you shall be creating the ng-app with name as “helloAjaxApp”.
var helloAjaxApp = angular.module("helloAjaxApp", []); helloAjaxApp.controller("CompaniesCtrl", ['$scope', '$http', function($scope, $http) { $scope.companies = [ { 'name':'Infosys Technologies', 'employees': 125000, 'headoffice': 'Bangalore'}, { 'name':'Cognizant Technologies', 'employees': 100000, 'headoffice': 'Bangalore'}, { 'name':'Wipro', 'employees': 115000, 'headoffice': 'Bangalore'}, { 'name':'Tata Consultancy Services (TCS)', 'employees': 150000, 'headoffice': 'Bangalore'}, ]; $scope.addRowAsyncAsJSON = function(){ $scope.companies.push({ 'name':$scope.name, 'employees': $scope.employees, 'headoffice':$scope.headoffice }); // Writing it to the server // var dataObj = { name : $scope.name, employees : $scope.employees, headoffice : $scope.headoffice }; var res = $http.post('/savecompany_json', dataObj); res.success(function(data, status, headers, config) { $scope.message = data; }); res.error(function(data, status, headers, config) { alert( "failure message: " + JSON.stringify({data: data})); }); // Making the fields empty // $scope.name=''; $scope.employees=''; $scope.headoffice=''; }; }]);
Following is the view code that represents the call to the method, addRowAsyncAsJSON, to post the JSON data:
<form class="form-horizontal" role="form" ng-submit="addRowAsyncAsJSON()"> <div class="form-group"> <label class="col-md-2 control-label">Name</label> <div class="col-md-4"> <input type="text" class="form-control" name="name" ng-model="name" /> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Employees</label> <div class="col-md-4"> <input type="text" class="form-control" name="employees" ng-model="employees" /> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Headoffice</label> <div class="col-md-4"> <input type="text" class="form-control" name="headoffice" ng-model="headoffice" /> </div> </div> <div class="form-group"> <div style="padding-left:110px"> <input type="submit" value="Submit" class="btn btn-primary"/> </div> </div> </form>
In recent years, artificial intelligence (AI) has evolved to include more sophisticated and capable agents,…
Adaptive learning helps in tailoring learning experiences to fit the unique needs of each student.…
With the increasing demand for more powerful machine learning (ML) systems that can handle diverse…
Anxiety is a common mental health condition that affects millions of people around the world.…
In machine learning, confounder features or variables can significantly affect the accuracy and validity of…
Last updated: 26 Sept, 2024 Credit card fraud detection is a major concern for credit…
View Comments
Great post sir, But Can you please tell what is the use of push $scope.companies.push()