我正在尝试根据所选内容(选择哪个栏)呈现具有两列的表格。每个条是一个日期数组。
因此,如果单击最后一个栏,我想要一个月份表,其中包含该月在该数组中出现的次数。
例如,在最后一个栏中,这是显示在控制台中的数组,该数组由第 62 行中的函数创建:
0: {date: 5, count: 1}
1: {date: 7, count: 15}
2: {date: 7, count: 15}
3: {date: 7, count: 15}
4: {date: 7, count: 15}
5: {date: 7, count: 15}
ETC..
功能:
const table = (data, e ) =>{
// get array of dates when bar is clicked
let newArr= data.datum.dimensions[0].datum.data.results.map((d) => d.Date)
console.log(newArr)
// convert into Date object
const datesArr = newArr.map(d => ({ date: new Date(d) , count : 0}))
console.log(datesArr)
// add month array with month as an integer and the the count of months (how many times each month shows up )
const monthArr = datesArr.map((e) => ({date: e.date.getMonth(), count: 0}))
monthArr.forEach((e) => e.count = datesArr.filter((d) => d.date.getMonth() === e.date).length)
console.log(monthArr)
setMonths(monthArr)
}
我正在使用状态,我只是想使用带有这个数组和计数的 JSX 来呈现一个表
所以我想要一张表,其中一列中有月份,另一列中有计数 - 像这样:
<tr>
<th>Year
<select name="format" id="format"
onChange={(e) => {
table()
}}
>
<option value='months'>months</option>
</select>
</th>
<th>
count
</th>
</tr>
</thead>
<tbody>
<tr>
<td>{months}</td>
<td> // count goes here </td>
</tr>
</tbody>
</Table> */}