gpt4 book ai didi

javascript - 使用ajax更新MySQL数据库

转载 作者:行者123 更新时间:2023-11-29 22:18:33 25 4
gpt4 key购买 nike

我试图通过单击按钮将 JS 数组发送到 .php 文件,并使用发送的数组在单击时运行 php 文件的代码。

我有一个按钮:

<button id="submit" class="button1" >Submit<span></span></button>

我尝试运行这个 JS ajax:

$('#submit').click(function() {
$.ajax({
method: "POST",
url: "submit.php",
data: selectedImageArray
}).done(function( msg ) {
alert( "Data Saved: " + msg );
});
});

在我的 Submit.php 文件中,我连接到数据库,然后有以下内容:

    $array = $_POST['selectedImageArray'];

$sql = $dbh->prepare("INSERT INTO pending_trades (steam_id, trade_items, is_giving, is_receiving, has_started) VALUES (:steamid, :itemlist, '1', '0', '0')");

$sql->bindParam(':steamid', $steamprofile['steamid']);
$sql->bindParam(':itemlist', $array);

$sql->execute();


}

当我单击“提交”按钮时,我收到一条消息“数据已保存”,但我的数据库没有任何反应。单击按钮是否应该运行 Submit.php 代码?

最佳答案

$('#submit').click(function(){
$.ajax({
method: "POST",
url: "submit.php",
data: {selectedImageArray: selectedImageArray}, // this is supposed to be JSON
.done(function( msg ) {
alert( "Data Saved: " + msg );
});
});
});

还有

$_POST['selectedImageArray'] // see the quotes

关于javascript - 使用ajax更新MySQL数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30966684/

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