Restangular.all('patientService/edit').post($scope.patientService).then(function(patientService){
$modalInstance.close(patientService);
$route.reload()
});
其中patientService / edit是调用方法的完整路径。(patientService)用于类和(编辑)编辑方法。
它给我一个错误400 Bad Request
我们不能在restangular中发送这种请求
答案 0 :(得分:0)
您可能希望查看在patientService中传递的变量。如果服务器试图将它们映射到一个类,如果它们拼写错误,则会得到400,不存在或者具有不兼容的数据类型。
答案 1 :(得分:0)
在Restangular中我会分开“/”:
Restangular.all('patientService').all('edit').post($scope.patientService).then(function()
{
});
但是你的问题可能在其他地方:也许这个REST路径不能被理解为服务器端?