作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我正在尝试使用 for 循环从数组中获取一个值并将其插入到 JSON url 中。这是代码。
myConnector.getData = function(table, doneCallback) {
datasetWebId.forEach(function(v) {
var webId = (v);
$.getJSON("https://www.twdc/api/" + webId + "/recorded?starttime=*-3d&endtime=*", function(resp) {
tableData = [];
resp.Items.forEach(function(item) {
item.Items.forEach(function(subItem) {
tableData.push({
'name': item.Name,
'Timestamp': subItem.Timestamp,
'Value': subItem.Value,
'Path': item.Path
});
});
});
});
table.appendRows(tableData);
doneCallback();
});
};
当它运行时,它会触发第一个循环并跳过其余循环。 datasetWebId 数组中有值,所以这不是问题。有人能发现不对劲的地方吗?
我是一名优秀的程序员,十分优秀!