无法将值从模型传递到服务器

时间:2017-05-09 04:53:40

标签: angularjs

这里我使用getprofile从服务器获取数据并在适当的文本框中显示其值。 然后我使用updatedata更新值 问题是服务器cl对象{fname,lname,city}不是具有发送值的人口。 我的代码如下



Rabbitmq

   var app = angular.module('myApp', []);
            app.controller('myCtrl', function ($scope, $http) {
                $http.get("getprofile")
                        .then(function (response) {
                            console.log(response.data.clientList);
                            $scope.clientList = response.data.clientList;
                        }, function errorCallback(response) {
                            alert("Unable to fetch ");
                        });
                $scope.submitForm = function (cl) {
                    console.log(cl);
                    $http({
                        method: 'POST',
                        url: "updateddata",
                        params: {cl: cl}
                    }).then(function successCallback(response) {
                        console.log("updated successfully");
                        $scope.success = "Updated successfully";
                    }, function errorCallback(response) {
                        console.log("not updated");
                        $scope.error = "Unable to update";

                    });
                }
            });




如何解决上述问题。

0 个答案:

没有答案