echarts一些笔记

console.log();  浏览器显示

 

$.ajax({
url : "ajax/echartWelcome.action",
type : "post",
dataType : "json",
data : {

},
beforeSend : function() {
$('#warning').empty();
$(".ssspinner").show();
},
async : true,
success : function(result) {
console.log(result);
$(".ssspinner").hide();
showChart(result.result);
},
});

var resultJson = JSON.parse(resultStr);

原文地址:https://www.cnblogs.com/wuer888/p/7493620.html