我尝试以这种格式显示日期:“YYYY-MM-DD HH:mm”,但当我这样尝试时:
const formatDate = "YYYY-MM-DD HH:mm";
mikeFWLabelChart = moment(mikeFWLabelChart).format(formatDate);
const a = new Chart(canvasElement, {
data: {
labels: mikeFWLabelChart,
datasets: [{
type: 'line',
label: 'Метра',
data: mikeFWDataChart,
borderWidth: 1
}]
},
options: {
scales: {
xAxes: [{
type: "time",
time: {
format: formatDate,
tooltipFormat: 'll'
},
scaleLabel: {
display: true,
labelString: 'Date'
}
}],
yAxes: [{
scaleLabel: {
display: true,
labelString: 'value'
}
}]
}
}
})
};
我收到X轴上的错误无效日期..
此外,我尝试更改格式日期,而不使用时刻代码:
mikeFWLabelChart = moment(mikeFWLabelChart).format(formatDate);
options code -> format
但它们看起来仍然是这样的格式:2023-02-16T05:00:00.000Z
如何更改此YYYY-MM-DD HH:mm中的日期格式?
1条答案
按热度按时间qaxu7uf21#
使用moment.js,您可以这样做:
使用. toISOString(),您可以这样做: