我開發了一個使用Angular JavaScript的網頁。現在它在web API上工作,但是當我連接到PHP CodeIgniter API時,GET函數可以工作,但是POST方法不起作用。它響應「響應代碼405」。Angular POST請求
代碼userMaintainenceService:
angular.module('commom.services')
.factory("userMaintainenceService["$resource","appSettings",userMaintainenceService]);
function userMaintainenceService($resource,appSettings){
return $resource(appSettings.serverPath+"dbu/User",null, {
Create: { method: 'POST' }
});
};
如果你想幫助它會更容易 – DMCISSOKHO
請加什麼ü已實施至今 –
規範服務 angular.module(「commom.services」,[「ngResource」]) .constant您更好地發佈一些代碼(「appSettings」,{ serverPath:「http://10.6.1.41/」 }); – Nasip