我想在我的django项目中使用d3 cloud(https://github.com/jasondavies/d3-cloud)。
但是库源代码是由Node JS编译的。
var dispatch = require("d3-dispatch").dispatch;
module.exports = function() {
var size = [256, 256],
text = cloudText,
但是我不能在我的django项目中使用Node JS..我如何在我的项目中使用那个库?
时间
1条答案
按热度按时间dw1jzc5e1#
您只需将“https://d3js.org/d3.v3.min.js“添加到html导入中即可。
d3.layout.cloud.js将在此之后工作,如本教程中所示:
http://bl.ocks.org/joews/9697914