我想使用getorgchart API创建动态图表,但是在显示jquery属性中的数据源时遇到了一个问题。我已经在JSP中进行了迭代并设置了我想显示的数据源值,但这是行不通的。 。请检查随附的代码。
var markerArrow ='';
var dataSource1 = "";
<c:forEach items="${resultModel.result}" var="result" varStatus="status">
dataSource1 = dataSource1.concat("{ id: " + ${result.employeeName} +", parentId: " + ${result.reportingTo} +", Name: " + "${result.toolTip}" +"},")
</c:forEach>
alert(dataSource1);
$("#people").getOrgChart({
primaryColumns: ["Name"],
orientation: getOrgChart.RO_TOP,
embededDefinitions: markerArrow,
dataSource: [dataSource1],
});
</script>
最佳答案
我没有特别使用JSP,但是对于GetOrgChart,在您的数据源中,每个“ id”和“ parentId”必须为数字(或null);不是员工的名字。以自上而下的层次结构添加每个ID。
关于javascript - 我想使用getorgchart API创建动态图表,但是设置jquery的datasource属性时存在一些问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35053876/