通过echarts生成可以查看词频数目的词云图
$(function () { $.ajax({ url: '/aa1', success: function (data) { var myChart = echarts.init(document.getElementById('box')); option = { xAxis: { type: 'category', data: data.data2 }, yAxis: { type: 'value' }, series: [ { data: data.data1, type: 'bar', showBackground: true, backgroundStyle: { color: 'rgba(180, 180, 180, 0.2)' } } ] }; myChart.setOption(option); window.addEventListener("resize", function () { myChart.resize(); }); }, error: function () { alert("传送ajax请求失败") return false } }) })
把数据通过ajax传递到前台显示