- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果过去 3 年的每个月都包含数据,那么这个工作示例 fiddle 就是我需要数据的样子
https://jsfiddle.net/bthorn/ncqn0jwy/
但是,我并不总是有给定月份的数据,因此如果它不包含任何数据,我将不会显示该月份
这是我试图遍历数据的 fiddle
https://jsfiddle.net/bthorn/2zkhk3dt/1/
我首先尝试循环这些年以获得不同的年份,
for (var y in data) {
if (typeof(uniqueYears[data[y].year]) === "undefined") {
distinctYears.push(data[y].year);
year = data[y].year;
if (year === "" || year === null) {
year = "";
}
strResult += "<th style='text-align:left;'><h2>" + year + "</h2></th>";
//console.log(year);
uniqueYears[data[y].year] = 0;
}
}
然后我遍历月份并注意年份的循环,但我意识到这根本不对,因为每一行都需要考虑年和月,
所以数据对象“数据”包含数据,但我不明白如何将我的数据(第二 fiddle )融入年/月 fiddle (第一 fiddle )
我什至尝试调用一个函数,该函数使用年月 fiddle 的每个输出循环遍历我的所有数据,但由于某种原因它似乎只显示 2015 年 8 月,我做了很多控制台。日志
更新
基本上第一 fiddle 是这样的
(但是,我的数据在 2015 年的文件夹中只有 4 个月的文件)因此那些会出现,但其他我会显示为空白“”)
更新 2:
更新 3
Third fiddle 显示我创建了一个函数来调用和循环我的数据以检查数据是否匹配,遗憾的是它只返回 2015 年 8 月的匹配
最佳答案
您将需要遍历所有 12 个月,并且只添加指向数据中出现的链接,请参阅 jsfiddle
var months = [
{ number: '01', title: 'January' },
{ number: '02', title: 'February' },
{ number: '03', title: 'March' },
{ number: '04', title: 'April' },
{ number: '05', title: 'May' },
{ number: '06', title: 'June' },
{ number: '07', title: 'July' },
{ number: '08', title: 'August' },
{ number: '09', title: 'September' },
{ number: '10', title: 'October' },
{ number: '11', title: 'November' },
{ number: '12', title: 'December' }
];
var data = [{
"fileName": "August.20.2015.pdf",
"fileSizeText": "609 KB",
"fileAccessed": "2015-12-03T07:21:11.767626-07:00",
"directoryName": "08 - 2015",
"year": "2015",
"month": "August",
"shortMonth": "08"
}, {
"fileName": "September.15.2015.pdf",
"fileSizeText": "806 KB",
"fileAccessed": "2015-10-21T13:18:21.577097-07:00",
"directoryName": "09 - 2015",
"year": "2015",
"month": "September",
"shortMonth": "09"
}, {
"fileName": "October.22.2015.pdf",
"fileSizeText": "331 KB",
"fileAccessed": "2015-12-15T10:21:00.194822-07:00",
"directoryName": "10 - 2015",
"year": "2015",
"month": "October",
"shortMonth": "10"
}, {
"fileName": "October.28.2015.pdf",
"fileSizeText": "2009 KB",
"fileAccessed": "2015-12-01T10:44:27.754937-07:00",
"directoryName": "10 - 2015",
"year": "2015",
"month": "October",
"shortMonth": "10"
}, {
"fileName": "October.06.2015.pdf",
"fileSizeText": "3161 KB",
"fileAccessed": "2015-11-25T13:51:46.210558-07:00",
"directoryName": "10 - 2015",
"year": "2015",
"month": "October",
"shortMonth": "10"
}, {
"fileName": "December.03.2015.pdf",
"fileSizeText": "1778 KB",
"fileAccessed": "2015-12-07T05:23:33.228568-07:00",
"directoryName": "12 - 2015",
"year": "2015",
"month": "December",
"shortMonth": "12"
}, {
"fileName": "December.04.2015.pdf",
"fileSizeText": "144 KB",
"fileAccessed": "2015-12-08T05:06:34.223478-07:00",
"directoryName": "12 - 2015",
"year": "2015",
"month": "December",
"shortMonth": "12"
}, {
"fileName": "December.07.2015.pdf",
"fileSizeText": "201 KB",
"fileAccessed": "2015-12-09T05:04:58.541633-07:00",
"directoryName": "12 - 2015",
"year": "2015",
"month": "December",
"shortMonth": "12"
}, {
"fileName": "December.09.2015.pdf",
"fileSizeText": "170 KB",
"fileAccessed": "2015-12-10T05:03:51.05038-07:00",
"directoryName": "12 - 2015",
"year": "2015",
"month": "December",
"shortMonth": "12"
}, {
"fileName": "December.21.2015.pdf",
"fileSizeText": "1922 KB",
"fileAccessed": "2015-12-22T05:23:42.132732-07:00",
"directoryName": "12 - 2015",
"year": "2015",
"month": "December",
"shortMonth": "12"
}, {
"fileName": "December.22.2015.pdf",
"fileSizeText": "202 KB",
"fileAccessed": "2015-12-23T06:28:09.500499-07:00",
"directoryName": "12 - 2015",
"year": "2015",
"month": "December",
"shortMonth": "12"
}, {
"fileName": "August.20.2015.pdf",
"fileSizeText": "609 KB",
"fileAccessed": "2015-12-03T07:21:11.78063-07:00",
"directoryName": "01 - 2016",
"year": "2016",
"month": "January",
"shortMonth": "01"
}];
var strResult = "";
var month = "";
var final = "";
strResult = "<table class='table-light' id='myTableId'><thead>";
var year = "";
var uniqueYears = {};
var distinctYears = [];
var unique = {};
var distinct = [];
var count = 0;
strResult += "<tr>";
for (var y in data) {
if (typeof(uniqueYears[data[y].year]) === "undefined") {
distinctYears.push(data[y].year);
year = data[y].year;
if (year === "" || year === null) {
year = "";
}
strResult += "<th style='text-align:left;'><h2>" + year + "</h2></th>";
//console.log(year);
uniqueYears[data[y].year] = 0;
}
}
strResult += "</tr></thead><tbody>";
////////////////////////////////////////
// loop over the years
for (var z in distinctYears) {
//strResult += "<th style='text-align:left;'><h2>" + distinctYears[z] + "</h2></th>";
// loop over all the files
for (var i in data) {
// create rows of the files that match the year
if (distinctYears[z] == data[i].year) {
if (typeof(unique[data[i].shortMonth]) === "undefined") {
distinct.push({'month':data[i].shortMonth, 'year':data[i].year});
// do the work here
month = data[i].month; console.log(month)
if (month === "" || month === null) {
month = "";
}
}
unique[data[i].shortMonth] = 0;
}
}
}
console.log(distinct);
for (var i = 0; i < 12; i++)
{
strResult += "<tr>";
for (var z in distinctYears)
{
if (findData(months[i], distinctYears[z]))
{
if (z == 0) {
strResult += "<td><a target='blank' class='link ng-binding' href='files.html?id=sub&year=" + distinctYears[z] + "&month=" + months[i].number + "' onclick=\"getFiles('" + distinctYears[z] + "','" + months[i].number + "');\">" + months[i].title + "</a></td>";
} else if (z == 1) {
strResult += "<td><a target='blank' class='link ng-binding' href='files.html?id=sub&year=" + distinctYears[z] + "&month=" + months[i].number + "' onclick=\"getFiles('" + distinctYears[z] + "','" + months[i].number + "');\">" + months[i].title + "</a></td>";
} else if (z == 2) {
strResult += "<td><a target='blank' class='link ng-binding' href='files.html?id=sub&year=" + distinctYears[z] + "&month=" + months[i].number + "' onclick=\"getFiles('" + distinctYears[z] + "','" + months[i].number + "');\">" + months[i].title + "</a></td>";
}
}
else
{
if (z == 0) {
strResult += "<td>"+months[i].title + "</td></td>";
} else if (z == 1) {
strResult += "<td>" + months[i].title + "</td>";
} else if (z == 2) {
strResult += "<td>" + months[i].title + "</td>";
}
}
}
strResult += "</tr>";
}
function findData(m, y)
{
for (var z in distinct)
{
if (distinct[z].month == m.number && distinct[z].year == y)
return true;
}
return false;
}
strResult += "</tbody></table>";
$("#divResult").html(strResult);
关于javascript - 遍历需要显示垂直列 3 年的数据,只显示包含数据的月份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34500936/
我正在 csv 上使用 hadoop 来分析一些数据。我使用sql/mysql(不确定)来分析数据,现在陷入了僵局。 我花了好几个小时在谷歌上搜索,却没有找到任何相关的东西。我需要一个查询,在该查询中
我正在为 Bootstrap 网格布局的“简单”任务而苦苦挣扎。我希望在大视口(viewport)上有 4 列,然后在中型设备上有 2 列,最后在较小的设备上只有 1 列。 当我测试我的代码片段时,似
对于这个令人困惑的标题,我深表歉意,我想不出这个问题的正确措辞。相反,我只会给你背景信息和目标: 这是在一个表中,一个人可能有也可能没有多行数据,这些行可能包含相同的 activity_id 值,也可
具有 3 列的数据库表 - A int , B int , C int 我的问题是: 如何使用 Sequelize 结果找到 A > B + C const countTasks = await Ta
我在通过以下功能编写此查询时遇到问题: 首先按第 2 列 DESC 排序,然后从“不同的第 1 列”中选择 只有 Column1 是 DISTINCT 此查询没有帮助,因为它首先从第 1 列中进行选择
使用 Bootstrap 非常有趣和有帮助,目前我在创建以下需求时遇到问题。 “使用 bootstrap 在桌面上有 4 列,在平板电脑上有 2 列,在移动设备上有 1 列”谁能告诉我正确的结构 最佳
我是 R 新手,正在问一个非常基本的问题。当然,我在尝试从所提供的示例中获取指导的同时做了功课here和 here ,但无法在我的案例中实现这个想法,即可能是由于我的问题中的比较维度更大。 我的实
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个 df , delta1 delta2 0 -1 2 0 -1 0 0 0 我想知道如何分配 delt
您好,我想知道是否可以执行以下操作。显然,我已经尝试在 phpMyAdmin 中运行它,但出现错误。也许还有另一种方式来编写此查询。 SELECT * FROM eat_eat_restaurants
我有 2 个列表(标题和数据值)。我想要将数据值列 1 匹配并替换为头文件列 1,以获得与 dataValue 列 1 和标题值列 2 匹配的值 头文件 TotalLoad,M0001001 Hois
我有两个不同长度的文件,file2 是一个很大的引用文件,我从中提取文件 1 的数据。 我有一行 awk,我通常会对其进行调整以在我的文件中进行查找和替换,但它总是在同一列中进行查找和替换。 所以对于
假设我有两个表,如下所示。 create table contract( c_ID number(1) primary key, c_name varchar2(50) not
我有一个带有 varchar 列的 H2 表,其检查约束定义如下: CONSTRAINT my_constraint CHECK (varchar_field <> '') 以下插入语句失败,但当我删
这是最少量的代码,可以清楚地说明我的问题: One Two Three 前 2 个 div 应该是 2 个左列。第三个应该占据页面的其余部分。最后,我将添加选项来隐藏和
在 Azure 中的 Log Analytics 中,我为 VM Heartbeat 选择一个预定义查询,我在编辑器中运行查询正常,但当我去创建警报时,我不断收到警报“查询未返回 TimeGenera
在 Azure 中的 Log Analytics 中,我为 VM Heartbeat 选择一个预定义查询,我在编辑器中运行查询正常,但当我去创建警报时,我不断收到警报“查询未返回 TimeGenera
今天我开始使用 JexcelApi 并遇到了这个:当您尝试从特定位置获取元素时,不是像您通常期望的那样使用sheet.getCell(row,col),而是使用sheet.getCell(col,ro
我有一个包含 28 列的数据库。第一列是代码,第二列是名称,其余是值。 public void displayData() { con.Open(); MySqlDataAdapter
我很沮丧:每当我缩小这个网页时,一切都变得一团糟。我如何将网页居中,以便我可以缩小并且元素不会被错误定位。 (它应该是 2 列,但所有内容都合并为 1)我试过 但由于某种原因,这不起作用。 www.o
我是一名优秀的程序员,十分优秀!