如何将jstree复选框值插入数据库

时间:2016-10-18 09:42:58

标签: javascript php jquery checkbox jstree

<script type="text/javascript">
$(document).ready(function(){ 
    //fill data to tree  with AJAX call
    $('#tree-container').jstree({
	'plugins': ["wholerow", "checkbox"],
        'core' : {
            'data' : {
                "url" : "response.php",
                "dataType" : "json" // needed only if you do not supply JSON headers
            }
        }
    })
});
</script>


 <div id="tree-container"></div>
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "defectsystem";

$conn = mysqli_connect($servername, $username, $password, $dbname) or die("Connection failed: " . mysqli_connect_error());
/* check connection */
if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}
$sql = "SELECT * FROM `treeview_items` ";
$res = mysqli_query($conn, $sql) or die("database error:". mysqli_error($conn));
	//iterate on results row and create new index array of data
	while( $row = mysqli_fetch_assoc($res) ) { 
		$data[] = $row;
	}
	$itemsByReference = array();

// Build array of item references:
foreach($data as $key => &$item) {
   $itemsByReference[$item['id']] = &$item;
   // Children array:
   $itemsByReference[$item['id']]['children'] = array();
   // Empty data class (so that json_encode adds "data: {}" ) 
   $itemsByReference[$item['id']]['data'] = new StdClass();
}

// Set items as children of the relevant parent item.
foreach($data as $key => &$item)
   if($item['parent_id'] && isset($itemsByReference[$item['parent_id']]))
      $itemsByReference [$item['parent_id']]['children'][] = &$item;

// Remove items that were added to parents elsewhere:
foreach($data as $key => &$item) {
   if($item['parent_id'] && isset($itemsByReference[$item['parent_id']]))
      unset($data[$key]);
}
// Encode:
echo json_encode($data);
?>

我已经成功创建了一个带复选框的jstree。但是,当我单击并提交时,如何将复选框值插入数据库。

感谢是否有人可以帮助我!!如果有任何问题可以在下面评论我。

1 个答案:

答案 0 :(得分:1)

尝试这样的事情:

var array = [];
// create an array

$.each($("input[name='user_permission']:checked"), function(){
    permissions.push($(this).val());
});
// Iterate over each checkbox which is checked and push its value in the array variable.

前:

......
var permissions = [];
$.each($("input[name='user_permission']:checked"), function(){
    permissions.push($(this).val());
});

$.ajax({
    url         : 'add_permission.php',
    method      : 'post',
    data       :
    {
        permissions : JSON.stringify(permissions)
    }
    ....
});
// After complete iteration you will get the value of each checked checkbox. 

现在使用ajax调用将其插入数据库

相关问题