gpt4 book ai didi

javascript - queue.js 从局部变量而不是外部文件传递数据

转载 作者:行者123 更新时间:2023-11-29 21:14:07 25 4
gpt4 key购买 nike

我想使用 json 变量传递数据。 在下面的示例中,json 是从外部 JSON 文件中获取的。任何人都可以帮助我如何从局部变量传递数据,因为我是 dc.js 的新手

queue()
.defer(d3.json, "sampledata.json") // sampledata.json is an external json file
.await(makeGraphs);

function makeGraphs() {
//function which proceses the data
}

我试过了

var sampledata = [ ....];
queue().defer(d3.json, "sampledata.json") // sampledata.json is an external json file
.await(makeGraphs);

function makeGraphs() {
//function which proceses the data
}

但没有成功。

最佳答案

如果您有局部变量,则使用异步调用 来传递它是没有意义的。直接将其作为参数传递:

var sampleData = [...];//this is your data

makeGraphs(sampleData);//call your function using it as an argument

然后:

function makeGraphs(data){//this is the parameter
//use 'data' here
}

关于javascript - queue.js 从局部变量而不是外部文件传递数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40235162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com