gpt4 book ai didi

javascript - 如何在 bootstrap 多选中获取 MySQL 数据?

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

我为 MySQL 数据库创建了一个管理面板,当我单击编辑按钮时,我想打印 Bootstrap 多选中的所有数据。如果我没有使用 Bootstrap 多重选择,只使用普通的多重选择,它就可以工作。我怎样才能做到这一点?

这就是它的样子(在按钮中,它显示当前数据,但是当我打开时,它没有显示在选择菜单中):

enter image description here

index.php

<select name="classification[]" id="classification" multiple="multiple">
<?php
while($row = $classificationResult -> fetch_array()) {
?>
<option value="<?php echo $row['classification_id'];?>"><?php echo $row['name'];?></option>
<?php
}
?>
</select>

<script>
// If I didn't add the multi select jquery, it's working
$('#classification').multiselect({
nonSelectedText: 'Select Framework',
maxHeight : 400,
includeSelectAllOption : false,
enableFiltering : false,
buttonWidth : '100%',
dropRight : true
});

$(document).on('click', '.edit_data', function(){
$("#classification option").prop("selected", false);
var data_id = $(this).attr("id");
$.ajax({
url:"fetchRole.php",
method:"POST",
data:{'data_id':data_id},
dataType:"json",
success:function(data){
$.each(data.classifications, function(i, e) {
$("#classification option[value='" + e + "']").prop("selected", true);
});
$('#data_id').val(data.id);
$('#insert').val("Edit");
$('#add_data_Modal').modal('show');
}
});
});
</script>

fetchRole.php

$query2 = $conn -> prepare("SELECT classification.classification_id AS class_id
FROM classification
LEFT JOIN role_classification ON classification.classification_id = role_classification.classification_id
WHERE role_classification.role_id = ?");
$query2 -> bind_param('i', $role['id']);
$query2 -> execute();
$result2 = $query2 -> get_result();
$query2 -> close();

while ($classification = $result2 -> fetch_assoc()) {
$classificationIdList[] = $classification["class_id"];
}



$return = array_merge($role, ["classifications" => $classificationIdList]);

echo json_encode($return);

最佳答案

使用.prop("selected", true)设置新的选定选项后,您需要刷新多选。 .

$.each(data.classifications, function(i, e) {
$("#classification option[value='" + e + "']").prop("selected", true);
});

$('#classification').multiselect('refresh');

refresh的描述方法:

This method is used to refresh the checked checkboxes based on the currently selected options within the select.

您可以查看可用方法的完整列表HERE .

关于javascript - 如何在 bootstrap 多选中获取 MySQL 数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51328577/

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