另一个使用href "> " /> 并使用ajax提交此内容。一切正常,但我得到重复的值,因为两个值来自表单,一个来自href点击 并在 insertDat-6ren">
gpt4 book ai didi

javascript - 在插入数据库之前删除数组的重复值

转载 作者:行者123 更新时间:2023-11-29 19:20:41 25 4
gpt4 key购买 nike

我正在尝试使用表单数组获取值

<input type="hidden" name="hifiWith[]" value="<?php echo $row['userID']; ?>" />

另一个使用href

<a href="#" class="clickThis" rel="<?php echo $row['userID']; ?>">
<img src="<?php echo '../uploads/'.$row['userImg']; ?>" /></a>
</a>

并使用ajax提交此内容。一切正常,但我得到重复的值,因为两个值来自表单,一个来自href点击

并在 insertData.php 上接受它

//for href click
$hifiTo=$_REQUEST['hifiTo'];

//for form array values
$hifiWith=$_REQUEST['hifiWith'];

我想从 href 中的数组中删除值。

我不知道该怎么做。

最佳答案

在您的 insertData.php 文件中添加以下内容以删除重复项

//for href click
$hifiTo=$_REQUEST['hifiTo'];

//for form array values
$hifiWith=$_REQUEST['hifiWith'];

// Assuming the $hifiWith is an array, if not do some validation before this step
if(($key = array_search($hifiTo, $hifiWith)) !== false) {
unset($hifiWith[$key]);
}

// Now your $hifiWith will have the duplicate removed.
....

关于javascript - 在插入数据库之前删除数组的重复值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42470729/

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