action
package com.fei.action;
import com.fei.bean.ZtreeA;
import com.fei.dao.DaoMapper;
import com.google.gson.Gson;
import javafx.application.Application;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import java.util.List;
@Controller
public class HappAction {
@Autowired
public DaoMapper dao;
@ResponseBody
@RequestMapping(value = "select.do")
public List<ZtreeA> select1(){
return dao.select();
}
@RequestMapping("index")
public String index(){return "jso";}
}
<-------------------------------------------------------------------------------------------->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="js/jquery-1.4.4.min.js"></script>
<script src="js/jquery.ztree.core.js"></script>
<link rel="stylesheet" href="css/zTreeStyle/zTreeStyle.css">
</head>
<script type="text/javascript">
var setting = {
data : {
simpleData : {
enable : true,
idKey : "id",
pIdKey : "pid",
rootPId : ""
}
}
}; $(function() {
$.ajax({
type : "POST",
url : "select.do",
success : function(data) {
// alert(data);
$.fn.zTree.init($("#treeDemo"), setting, data);
}
});
});
</script>
<body>
<div>
<ul id="treeDemo" class="ztree"></ul>
</div>
</body>
</html>