我正在使用JSON和Flot创建饼图.用于创建饼图的JS函数以以下格式从Django接收JSON数组:
[1, 3, 2, 5, 4]
如果没有数据,则JSON数组为:
[0, 0, 0, 0, 0]
我正在尝试调整功能,以便如果没有数据,则不会绘制饼图,而是会显示一些文本(例如“什么都没有显示”).到目前为止,我已经尝试过:
function loadWeekChart(theData) {
var blankData = [0, 0, 0, 0, 0];
if ($.data(theData) == $.data(blankData)){
$('#week-pie-chart').empty().append('Nothing to show yet');
} else {
$.plot($("#week-pie-chart"), theData ,
{
series: {
pie: {
show: true
}
}
});
}
}
JS不会失败,但是它既不会打印饼图(没有数据),也不会给我文本替换.
请有人告诉我我要去哪里错了!
解决方法:
就个人而言,我将在此处执行以下伪代码…
set boolean to true
for each element in the JSON
compare it with blank data element
if they are not equal boolean false
else continue
return boolean
然后,您将知道是否存在与该函数相同的函数,如果不是,则返回true;否则,则返回true.
如果您需要编码方面的帮助,请告诉我.应该不难
这可能也有帮助:Similar Question
function checkJsons(otherJson,newJson)
{
var sameJson = true;
for (var key in otherJson) {
if(otherJson[key] != newJson[key]) {sameJson=false;} return sameJson;
}
}
那应该有帮助,虽然不能测试
一个更好的方法但是更难读的是
function checkJsons(otherJson,newJson)
{
for (var key in otherJson) {if(otherJson[key] != newJson[key]) {return false;}}
return true;
}
function pieChartData(theData)
{
var blankData = [0, 0, 0, 0, 0];
if(checkJsons(blankData,theData)){$('#week-pie-chart').empty().append('Nothing to show yet');} else { // do your code here // }
}