4

我正在研究如何使用功能强大的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 版本。有人知道要改变什么吗?

4

1 回答 1

11

API 仍在开发中。如果你想尝试一下,目前的 API 是这样的:

d3.text("/test")
    .header("Content-type", "application/x-www-form-urlencoded")
    .post("a=1&b=2&c=3", function(error, text) { console.log(text); });

如果您想要完整的请求对象而不仅仅是 responseText,您也可以直接使用 d3.xhr 而不是 d3.text。

编辑:更新到最新的 API。

于 2012-09-19T16:25:18.700 回答