你好 !
我用 AngularJS 开发了一个 RESTful webapp,我使用该ngResource
模块发送 http 请求。该网络服务是使用 FuelPHP 开发的。
我在$save
使用ngResource
. 我的网络服务没有收到帖子数据。
当我用 Firebug 检查 http 请求时,我可以看到 post 数据。
我不明白为什么网络服务没有收到帖子数据。因此,如果您有想法,帮助我会很酷。
对不起我的英语水平不好。
这是代码:
Service :
app.factory('Medication', ['$resource', 'global', function ($resource, global) {
return $resource(global.API+'/medication/medication', {}, {})
}])
Method in the controller :
$scope.addMedication = function() {
var newMed = new Medication();
newMed.name = 'nameValue';
newMed.increaseinr = 1;
newMed.details = 'detailsValue';
newMed.$save();
}