0
我想從前端應用程序發送POST請求到一個複雜的JSON對象。開機自檢時發生錯誤
後端側
我有一類名爲NotificationService和一個名爲writeNotification方法如下:
@POST
@Path(SERVICE_PATH_WRITENOTIFICATION)
public Response writeNotification(@FormParam("notification") String notification)
前端側
我發這樣的:
var obj = [ {
to : $scope.formComboDestinatari.listaDestinatari,
subject : $scope.formOggetto,
date : "xxx",
body : $scope.formTesto,
type : $scope.formComboTipologia
} ];
如果我用這個語法:
Restangular.one('serverpath/writenotification').post(obj);
當我嘗試發送我有這樣的錯誤請求:
500 internal server error
如果我用這個語法:
Restangular.one('serverpath').post('writenotification', obj);
400 Bad request
我不會rstand我的錯在哪裏。