1. 程式人生 > >百度echarts報Cannot read property 'calculable' of nu

百度echarts報Cannot read property 'calculable' of nu

百度圖示外掛echarts報錯Cannot read property 'calculable' of nul;檢視calculable屬性也是設定了false;

同時展示了兩個圖表,有一個是正常的,仔細分析了一下發現應該不是echarts配置問題,應該是後端返回資料問題;

於是就console.log(data);

{"key":"\u5f08\u901a\u6d4b\u8bd5","value":null},{"key":"\u55c5\u63a2\u6d4b\u8bd5","value":null},
{"key":"\u65b0\u7586\u7535\u4fe1","value":null}

image.png

返回的資料是null;於是在PHP中加了一個判斷

if(!$result['value'])
{
    $result['value'] = 0;
}

image.png