我有一个Angular + PHP应用程序,我在删除客户时遇到问题。
我没有错误,实际上,应用程序返回sucecess,但它不会从我的数据库中删除客户。
这是我的角度控制器
app.controller('consultar_cliente_controller', function($scope, $http){
$scope.listaDeCliente = [];
var init = function(){
$scope.buscar();
};
$scope.buscar = function(){
$http.get('consultar_cliente.php')
.success(function(data){
$scope.listaDeCliente = data;
})
.error(function(){
console.error('Erro ao executar o GET do cliente');
});
};
$scope.deletar = function(id){
$http.delete('remover_cliente.php/' + id)
.success(function(){
console.log('Cliente removido com sucesso!');
$scope.buscar();
})
.error(function(){
console.error('Erro ao remover cliente');
})
};
init();
});
这是我的PHP
<?php
$dbh = new PDO('pgsql:host=localhost;dbname=livraria_glp', 'postgres');
/*
* Recuperando todos os detalhes da requisição HTTP do Angular
*/
$postdata = file_get_contents("php://input");
$request = json_decode($postdata);
@$id = $request->id;
echo $id;
$dbh->exec("DELETE FROM PRODUTO WHERE ID = '$id'") or die( $dbh->errorInfo() );
?>
这是我的HTML
<div class="well">
<div class="container">
<h2>Dados</h2>
<div class="form-group">
<label>Nome</label>
<input class="form-control" type="text" ng-model="filtroNome" />
</div>
</div>
<div class="container resultado">
<table class="table">
<thead>
<tr>
<th>Nome</th>
<th>CPF</th>
<th>E-mail</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="cliente in listaDeCliente | filter : filtroNome">
<td>{{cliente.nome}}</td>
<td>{{cliente.cpf}}</td>
<td>{{cliente.id}}</td>
<td><button class="btn btn-danger" ng-click="deletar(cliente.id)">Deletar</button></td>
</tr>
</tbody>
</table>
</div>
<button class="btn btn-success" onclick="window.location.href='javascript:window.history.go(-1)'">Voltar</button>
</div>
编辑:我在PHP上试过这个:
echo "DELETE FROM PRODUTO WHERE ID = '$id'";
它又回来了:
DELETE FROM PRODUTO WHERE ID =''
为什么PHP不能接收id?
答案 0 :(得分:2)
Angular不会发送DELETE
的请求正文,因此您必须从网址中读取id
。您也可以将其作为查询参数传递
$http.delete('remover_cliente.php', {
params: {id: id}
})
然后通过$_GET['id']
阅读。
<?php
if (!isset($_GET['id'])) {
exit;
}
$id = $_GET['id'];
$dbh = new PDO('pgsql:host=localhost;dbname=livraria_glp', 'postgres');
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$stmt = $dbh->prepare('DELETE FROM PRODUTO WHERE ID = ?');
$stmt->execute([$id]);
echo $id;
或者(如果$_GET
不适用于DELETE
个请求),您可以尝试使用
$http.delete('remover_cliente.php', {
data: {id: id}
})
然而,我不知道这是否得到支持,而且肯定不是非常好。如果确实有效,您可以继续使用file_get_contents('php://input')
和json_decode()
。
答案 1 :(得分:1)
请尝试替换它,
$scope.deletar = function(id){
var postData = {'id' : id};
$http.delete('remover_cliente.php', postData)
.success(function(){
console.log('Cliente removido com sucesso!');
$scope.buscar();
})
.error(function(){
console.error('Erro ao remover cliente');
})
};