XHR / Post Request using D3(XHR/使用 D3 发布请求)
问题描述
我正在研究如何使用非常强大的 D3(我可以完全推荐用于数据可视化)并找到了 D3 的作者目前所在的 xhr2 分支致力于 xhr POST 请求(和其他请求类型)支持.
I was doing a research on how to make POST requests using the amazingly powerful D3 (which I can fully fully recommend for data visualization) and found the xhr2 branch where the authors of D3 are currently working on xhr POST request (and other request types) support.
似乎这是一个全新的功能,因为合并请求来自昨天(2012 年 9 月 18 日):) 出于好奇,我已经想尝试一下,使用以下代码序列(我从这个 位置)
Seems like it is a brand new feature as the merge request is from yesterday (18 September 2012) :) And as curious I am I already wanted to try it out, using the following code sequence (which I have from this location)
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");
很遗憾,我收到以下错误消息.
Unfortunately I'm getting the following error message.
TypeError: 'undefined' 不是函数(评估'd3.text("localhost/test",function(d) { console.log(d)}).method("POST")')
TypeError: 'undefined' is not a function (evaluating 'd3.text("localhost/test",function(d) { console.log(d)}) .method("POST")')
我正在使用 缩小版 D3来自 xhr2 分支.有人知道要改变什么吗?
I'm using the minified D3 version from the xhr2 branch. Anybody an idea what to change?
推荐答案
API仍在开发中.如果你想试试看,目前的 API 是这样的:
The API is still under development. If you want to try it out, the current API is like so:
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.
You can also use d3.xhr rather than d3.text directly if you want the full request object rather than just the responseText.
更新到最新的 API.
Updated to latest API.
这篇关于XHR/使用 D3 发布请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:XHR/使用 D3 发布请求
基础教程推荐
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01