我想在数据库中保存数据,我使用angular并使用文件php访问数据库,问题是:POST http://127.0.0.1:9090/insert_indispo.php 405(Method Not Allowed).. 请问如何解决这个问题!......
这里是我的职能发布:
writer.writerows
这里我的文件是insert_indispo.php
function ValideConge(id,debut,fin) {
var deferred = $q.defer();
$http({
method: 'POST',
url: window.location.href + 'insert_indispo.php',
data: {id,debut,fin},
headers: { 'Content-Type': 'application/json' }
}).then(function (success){
deferred.resolve("ok!");
console.log("ok c!");
},function (error){
deferred.resolve(false);
console.log("ok n!");
});
return deferred.promise;
}