我正在使用 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:""
};
};
}])