0

我正在编写一个实现 d3.js 和 dagre-d3.js 以显示有向无环图的 Julia 包。我有一个包“D3Graphs.jl”,我在其中将脚本打印到网页上。我的 julia 代码中有以下内容:

print(io, """<script src=\"https://d3js.org/d3.v3.min.js\"></script>""") 

这成功地使我能够利用 d3。但是,当我尝试使用 dagre-d3.js ( https://raw.githubusercontent.com/cpettitt/dagre-d3/master/dist/dagre-d3.js ) 时,它不起作用。我有以下内容:

print(io, """<script src=\"https://rawgit.com/cpettitt/dagre-d3/master/dist/dagre-d3.js\"></script>""") 

我使用了 rawgit 版本和 cdnjs,甚至将 https 更改为 http。我还将它上传到与我的 jypter 笔记本相同的文件夹中。还有什么我可以做的吗?谢谢!

4

0 回答 0