0

我正在使用 json-server 和 db.json,在 db.json 文件中我有一个当前为空的数组"feedback":[],用户应该能够从应用程序发送反馈。

但没有任何东西被推入服务器,get 方法有效(从服务器获取)但没有 PUT

这是我的服务:

angular.module('confusionApp')
.constant("baseURL", "http://localhost:3000/")
.service('feedbackService',['$resource','baseURL',function($resource,baseURL){
      this.getFeedback=function(){
        return $resource(baseURL+"feedback/",null,{
          'update':{
            method:'PUT'
          }
        });
      };
    }]);

这是控制器:contactus.html 包含一个反馈表,因此有两个控制器

// contactus.html controllers
.controller('ContactController', ['$scope', function($scope) {
        $scope.feedback = {
            firstName: "",
            lastName: "",
            email: "",
            date:""
        };
    }])
    // Feedback form controller
    .controller('FeedbackController', ['$scope','feedbackService', function($scope,feedbackService) {
$scope.feedbacks=feedbackService.getFeedback().query();
        $scope.sendFeedback = function() {

                $scope.feedback.date=new Date().toISOString();
                $scope.feedbacks.push($scope.feedback);
                $scope.feedbackForm.$setPristine();
                $scope.feedback = {
                    firstName: "",
                    lastName: "",
                    email: "",
                    date:""
                };
        };
    }]) 
4

2 回答 2

1

推送新反馈后,调用update方法更新数据

var feedbackService = feedbackService.getFeedback();
...

$scope.feedbacks.push($scope.feedback); 
feedbackService.update($scope.feedbacks)
于 2016-08-20T01:51:59.660 回答
0

在服务中使用 POST 和 POT 方法后,我意识到不需要对服务进行任何更改,只需在控制器 中稍作更改即可以不同方法回答同一问题

于 2016-08-20T12:43:33.343 回答