我想使用 getorgchart API 创建一个动态图表,但是在显示 jquery 属性中的数据源时遇到了一个问题。我已经在 JSP 中完成了迭代并设置了我想要显示的数据源值,但这不起作用。任何人都可以帮忙. 请检查随附的代码。
var 标记箭头 = ' ';
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>