gpt4 book ai didi

javascript - 删除angularjs中的数据库数据

转载 作者:行者123 更新时间:2023-11-28 10:48:06 25 4
gpt4 key购买 nike

当我将此链接放在浏览器上时,它就会起作用。但是,当单击该按钮时,它将不起作用。这段代码有什么问题。 http://localhost/youtubewebservice/shopCartProductDelete.php?cart_ID=6

$scope.delete = function(cart_ID, index) {
var params = $.param({"cart_ID":cart_ID});

console.log(cart_ID);
$http({
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
url: 'http://localhost/youtubewebservice/shopCartProductDelete.php?cart_ID=$cart_ID',
method: "GET",
data: params
}).success(function(data){
$scope.data.splice(index, 1);
});
}
<img src="img/removecart.png" ng-click="delete({{produ.cart_ID}}, $index)" style="max-height: 40px;margin-right: 15px;"/>

PHP代码

<?php
$con = mysqli_connect("localhost","root","","look4com_lk");
if(isset($_GET['cart_ID'])){
$cart_ID = $_GET['cart_ID'];
$res = "DELETE FROM l4wlk_cart WHERE cart_ID='".$cart_ID."'";
mysqli_query($con, $res);


}

echo json_encode($result);

?>

最佳答案

参见the documentationng-click

enter image description here

它使用 expression .

如果template写在 Type列,那么您可以将这些值写在双花括号 {{..}} 中。但由于它接受表达式,因此不需要使用双花括号。

更改您的 <img..>至:

<img src="img/removecart.png" ng-click="delete(produ.cart_ID, $index)" style="max-height: 40px;margin-right: 15px;"/>

关于javascript - 删除angularjs中的数据库数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39200005/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com