我可以在JSON文件中使用x,y值的数据元素吗?这是我的JSON文件,我想将reading_bs用作x值,将reading_date用作y值。
[
{
"id": 76,
"user_id": 6,
"reading_date": "2016-02-23",
"reading_bs": 2,
"fasting": true,
"reading_notes": "test"
},
{
"id": 77,
"user_id": 6,
"reading_date": "2016-02-24",
"reading_bs": 2,
"fasting": true,
"reading_notes": "test2"
},
{
"id": 78,
"user_id": 6,
"reading_date": "2016-02-25",
"reading_bs": 2,
"fasting": true,
"reading_notes": "test3"
}
]
其他值在页面的其他地方使用。
答案 0 :(得分:0)
您需要map
数组包含x和y,之后您可以在数据集中包含任何其他属性,但无法指定要作为x和y的字段:
data = data.map(function (item) {
item.x = item.reading_bs;
item.y = item.reading_date;
return item;
});