我正在研究如何使用功能强大的D3发出 POST 请求(我可以完全推荐它用于数据可视化),并找到了D3 的作者目前正在处理 xhr POST 请求(和其他请求类型)的xhr2 分支支持。
似乎这是一个全新的功能,因为合并请求来自昨天(2012 年 9 月 18 日):) 出于好奇,我已经想尝试一下,使用以下代码序列(我从这个位置获得)
d3.text("localhost/test",function(d) { console.log(d)})
.method("POST")
.setRequestHeader("Content-type", "application/x-www-form-urlencoded")
.data("a=1&b=2&c=3");
不幸的是,我收到以下错误消息。
TypeError: 'undefined' is not a function (evalating 'd3.text("localhost/test",function(d) { console.log(d)}) .method("POST")')
我正在使用 xhr2 分支中的缩小 D3 版本。有人知道要改变什么吗?