使用$ http.put()将表单数据发送到服务器的AngularJS错误

时间:2013-12-27 21:27:39

标签: javascript php http angularjs slim

我有以下控制器:

function EditCtrl($scope,$http,$routeParams,$location) {
    $scope.master = {};
    $scope.actviePath = null;
    $http.get("/employeeApp/assets/php/index.php/users/" + $routeParams.id).success(function (data) {
        $scope.users = data;

        $scope.user = {
            name: data.name,
            email: data.email,
            userName: data.userName,
            password: data.password,
            role: data.role,
            availability: data.availability,  
        };
    });

     $scope.update_user = function(user) {

    $http.put("/employeeApp/assets/php/index.php/users/"+$routeParams.id, user).success(function(){
      $scope.reset();
      $scope.activePath = $location.path('/');
    });
    $scope.reset = function() {
      $scope.user = angular.copy($scope.master);
    };
    $scope.reset();
    };
}

以及以下html模板:

<div ng-init="$root.title='Add new user'">
    <h2>Edit user: </h2>
    <form novalidate name="AddNewForm" id="add-new-form" method="post" action="">
        <label for="name">Name:</label>
        <input type="text" ng-model="user.name" />
        <label for="email">Email:</label>
        <input type="email" ng-model="user.email" />
        <label for="username">Username:</label>
        <input type="text" ng-model="user.userName" />
        <label for="password">Password:</label>
        <input type="password" ng-model="user.password" />
        <label for="role">User Role:</label>
        <input type="text" ng-model="user.role" />
        <label for="availability">Availability: </label>
        <input type="text" ng-model="user.availability" />
        <!--<input type="hidden" ng-model="user.id" />-->
        <br />
        <button class="btn btn-primary"  id="add-new-btn" ng-click="update_user(user)">Save!</button>
        <a href="#/" class="btn">Cancel</a>

    </form>
</div>

当我尝试编辑用户然后保存更改时,控制台中会出现以下错误,并且表单数据不会发送到服务器:

SyntaxError: Unexpected token S
    at Object.parse (native)
    at fromJson (angularjs/1.2.6/angular.js:1035:14)
    at $HttpProvider.defaults.defaults.transformResponse (angularjs/1.2.6/angular.js:6926:18)
    at angularjs/1.2.6/angular.js:6901:12
    at Array.forEach (native)
    at forEach angularjs/1.2.6/angular.js:302:11)
    at transformData angularjs/1.2.6/angular.js:6900:3)
    at transformResponse (angularjs/1.2.6/angular.js:7570:17)
    at wrappedCallback (angularjs/1.2.6/angular.js:10905:81)
    at angularjs/1.2.6/angular.js:10991:26 angular.js:9383
(anonymous function) angular.js:9383
(anonymous function) angular.js:6825
wrappedCallback angular.js:10908
(anonymous function) angular.js:10991
Scope.$eval angular.js:11906
Scope.$digest angular.js:11734
Scope.$apply angular.js:12012
done angular.js:7818
completeRequest angular.js:7991
xhr.onreadystatechange

在服务器上我有一个用slim做的php API。服务器的链接是app / index.php / user / suerId。 当我尝试输出{{user}}时,它会正确显示数据,但我不知道为什么我无法将数据发送到服务器。 我正在使用angularjs 1.2.6。有谁知道为什么会这样? Thnx提前!

2 个答案:

答案 0 :(得分:2)

它应该是:

$http.put("/employeeApp/assets/php/index.php/users/"+$routeParams.id,
  $scope.user)

而不是

$http.put("/employeeApp/assets/php/index.php/users/"+$routeParams.id,
  user)

您收到的错误是angularjs无法将user解析为JSON。解析$scope.user时应该没问题。

答案 1 :(得分:1)

看到这里可能有两个原因

  1. 最重要的是你的服务器不接受HttpPut请求,我有同样的问题而且我很挣扎然后我改变了服务器应用程序上的配置,允许HttpPut,HttpDelete请求然后它就像一个魅力

  2. 此外,您需要使用$ .param(user)将用户对象转换为Http表单数据类型。这是因为您的服务器可能无法直接理解JSON数据,因此需要将其转换为服务器可理解的格式(Http格式)。

    if
  3. 注意上面的$ .param。

    请参阅详细解释的this post

    希望这有帮助。