编写一个名为“ plotLine”的函数,该函数采用点数组,其中每个元素都是[x,y]格式的数组,而x和y均为浮点数。该函数将使用Plotly库在id为“ plot”的div中创建折线图。您可能会假设您的代码在下载了Plotly的页面上运行。
<html>
<head>
<script src="https://cdn.plot.ly/plotly-latest.min.js"
></script>
<script
function plotLine(array){
var object1 =
{
"data":
[{
"x": array.map(i => i[0]),
"y": array.map(i => i[1])
}]
};
return object1;
}
></script>
</head>
<body>
<div id="plot"></div>
<script src="plots.js"></script>
</body>
</html>
我正在语法错误:意外的令牌<。我在做什么错了?
答案 0 :(得分:2)
items: {
id1: {
isFull: false,
title: 'Item 1',
id: 'id1'
},
id2: {
isFull: true,
title: 'Item 2',
id: 'id2',
description: '..',
lorem: '',
...
}
}