基于Django快速集成Echarts代碼示例
1.在線定制下載echarts
https://echarts.apache.org/zh/builder.html
2.創(chuàng)建一個django項目或者在已有的項目
- 配置文件中確保數(shù)據(jù)庫配置、static配置、與添加項目名到INSTALLED_APPS下。
- 配置靜態(tài)文件目錄static,目錄下創(chuàng)建:css、img、js。
- 保存echarts.min.js到js目錄下。
- 創(chuàng)建templates文件,html文件放到此目錄。
快速靜態(tài)測試
test.html文件
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ECharts</title> <!-- 引入 echarts.js --> {% load static %} <script src="{% static '/js/echarts.min.js' %}"></script> </head> <body> <!-- 為ECharts準備一個具備大?。▽捀撸┑腄om --> <div id="main" style="width: 600px;height:400px;"></div> <script type="text/javascript"> // 基于準備好的dom,初始化echarts實例 var myChart = echarts.init(document.getElementById('main')); // 指定圖表的配置項和數(shù)據(jù) var option = { title: { text: 'ECharts 入門示例' }, tooltip: {}, legend: { data:['銷量'] }, xAxis: { data: ["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"] }, yAxis: {}, series: [{ name: '銷量', type: 'bar', data: [5, 20, 36, 10, 10, 20] }] }; // 使用剛指定的配置項和數(shù)據(jù)顯示圖表。 myChart.setOption(option); </script> </body> </html>
urls文件
from django.urls import path from app.views import TestView urlpatterns = [ path('test/',TestView.as_view()), ]
Views文件
from django.shortcuts import render from rest_framework.views import View from rest_framework.response import Response class TestView(View): def dispatch(self, request, *args, **kwargs): """ 請求到來之后,都要執(zhí)行dispatch方法,dispatch方法根據(jù)請求方式不同觸發(fā) get/post/put等方法 注意:APIView中的dispatch方法有好多好多的功能 """ return super().dispatch(request, *args, **kwargs) def get(self, request, *args, **kwargs): return render(request, "test.html") def post(self, request, *args, **kwargs): return Response('POST請求,響應內(nèi)容') def put(self, request, *args, **kwargs): return Response('PUT請求,響應內(nèi)容') Views文件
訪問url地址:
django獲取數(shù)據(jù)庫中的數(shù)據(jù)傳遞給echarts
test1.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ECharts</title> <!-- 引入 echarts.js --> {% load static %} <script src="{% static '/js/echarts.min.js' %}"></script> </head> <body> <div id="main" style="width: 600px;height:400px;"></div> <script type="text/javascript"> // 基于準備好的dom,初始化echarts實例 console.log(name) var myChart = echarts.init(document.getElementById('main')); // 指定圖表的配置項和數(shù)據(jù) var option = { title: { text: 'ECharts 入門示例' }, tooltip: {}, legend: { data: ['銷量'] }, xAxis: { data: {{ name|safe }} }, yAxis: {}, series: [{ name: '銷量', type: 'bar', data:{{ data|safe }} }] }; // 使用剛指定的配置項和數(shù)據(jù)顯示圖表。 myChart.setOption(option); </script> </body> </html>
urls文件
from django.urls import path from app.views import TestView1 urlpatterns = [ path('test1/',TestView1.as_view()), ]
Views文件
from django.shortcuts import render from rest_framework.views import View from rest_framework.response import Response class TestView1(View): def dispatch(self, request, *args, **kwargs): """ 請求到來之后,都要執(zhí)行dispatch方法,dispatch方法根據(jù)請求方式不同觸發(fā) get/post/put等方法 注意:APIView中的dispatch方法有好多好多的功能 """ return super().dispatch(request, *args, **kwargs) def get(self, request, *args, **kwargs): name = ["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"] data = [56, 40, 54, 23, 12, 31] return render(request, "test1.html",{"name":name,"data":data}) def post(self, request, *args, **kwargs): return Response('POST請求,響應內(nèi)容') def put(self, request, *args, **kwargs): return Response('PUT請求,響應內(nèi)容')
注意:我在views文件中直接返回數(shù)據(jù),在html模板中使用標簽渲染,如果你需要使用ORM從數(shù)據(jù)庫拿數(shù)據(jù),可以做如下操作:
wheelsList = Wheel.objects.all()
name = list(Wheel.objects.values_list('name', flat=True))
data = list(Wheel.objects.values_list('trackid', flat=True))
訪問url地址:
echarts異步更新數(shù)據(jù)
test2.html文件
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!-- 引入 jquery.js--> <script src="http://code.jquery.com/jquery-latest.js"></script> <!-- 引入 echarts.js --> {% load static %} <script src="{% static '/js/echarts.min.js' %}"></script> </head> <body> <div id="main" style="width: 600px;height:400px;"></div> <script type="text/javascript"> $(function () { var server_info; var myChart = echarts.init(document.getElementById('main')); var option = { title: { text: 'ECharts 入門示例' }, tooltip: {}, legend: { data:['銷量'] }, xAxis: { data: {{ name | safe }} }, yAxis: {}, series: [{ name: '銷量', type: 'bar', data: {{ data | safe }} }] }; myChart.setOption(option, true); setInterval( function () { $.ajax({ type: 'GET', url: '/test1_api/', dataType: 'json', success: function (arg) { server_info = eval(arg); option.xAxis.data = server_info.name; option.series[0].data = server_info.data; } }); myChart.setOption(option, true); }, 2000); window.onresize = function () { myChart.resize(); }; }); </script> </body> </html>
urls文件
from django.urls import path from app.views import TestView,TestView1,TestView1api urlpatterns = [ path('test2/',TestView1.as_view()), path('test1_api/',TestView1api.as_view()), ]
View文件
from django.shortcuts import render from rest_framework.views import View from rest_framework.response import Response from django.http import HttpResponse class TestView1(View): def dispatch(self, request, *args, **kwargs): """ 請求到來之后,都要執(zhí)行dispatch方法,dispatch方法根據(jù)請求方式不同觸發(fā) get/post/put等方法 注意:APIView中的dispatch方法有好多好多的功能 """ return super().dispatch(request, *args, **kwargs) def get(self, request, *args, **kwargs): name = ["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"] data = [56, 40, 54, 23, 12, 31] return render(request, "test2.html",{"name":name,"data":data}) def post(self, request, *args, **kwargs): return Response('POST請求,響應內(nèi)容') def put(self, request, *args, **kwargs): return Response('PUT請求,響應內(nèi)容') count = 1 class TestView1api(View): def dispatch(self, request, *args, **kwargs): """ 請求到來之后,都要執(zhí)行dispatch方法,dispatch方法根據(jù)請求方式不同觸發(fā) get/post/put等方法 注意:APIView中的dispatch方法有好多好多的功能 """ return super().dispatch(request, *args, **kwargs) def get(self, request, *args, **kwargs): global count name = ["襯衫","羊毛衫","雪紡衫","褲子","高跟鞋","襪子"] data = [56+count, 40+count, 54+count, 23+count, 12+count, 31+count] count = count + 1 print(data) print(count) ret = {'name': name, 'data': data} return HttpResponse(json.dumps(ret)) def post(self, request, *args, **kwargs): return Response('POST請求,響應內(nèi)容') def put(self, request, *args, **kwargs): return Response('PUT請求,響應內(nèi)容')
echarts異步加載+異步更新
在上個示例的基礎(chǔ)上,修改test2.html如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!-- 引入 jquery.js--> <script src="http://code.jquery.com/jquery-latest.js"></script> <!-- 引入 echarts.js --> {% load static %} <script src="{% static '/js/echarts.min.js' %}"></script> </head> <body> <div id="main" style="width: 600px;height:400px;"></div> <script type="text/javascript"> $(function () { var server_info; // 基于準備好的dom,初始化ECharts實例 var myChart = echarts.init(document.getElementById('main')); // 指定圖表的配置項和數(shù)據(jù) var option = { title: { text: 'ECharts 入門示例' }, tooltip: {}, legend: { data: ['銷量'] }, xAxis: { data: [] }, yAxis: {}, series: [{ name: '銷量', type: 'bar', data: [] }] }; myChart.setOption(option, true); // 異步加載json格式數(shù)據(jù) $.getJSON('http://127.0.0.1:8080/test1_api/', function (data) { myChart.setOption({ xAxis: { data: data.name }, series: [{ // 根據(jù)名字對應到相應的系列 data: data.data }] }); }); // ajax異步更新json格式數(shù)據(jù) setInterval( function () { $.ajax({ type: 'GET', url: '/test1_api/', dataType: 'json', success: function (arg) { server_info = eval(arg); option.xAxis.data = server_info.name; option.series[0].data = server_info.data; } }); myChart.setOption(option, true); }, 2000); window.onresize = function () { myChart.resize(); }; }); </script> </body> </html>
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Python使用eval函數(shù)執(zhí)行動態(tài)標表達式過程詳解
這篇文章主要介紹了Python使用eval函數(shù)執(zhí)行動態(tài)標表達式過程詳解,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下2020-10-10Python增量循環(huán)刪除MySQL表數(shù)據(jù)的方法
這篇文章主要介紹了Python增量循環(huán)刪除MySQL表數(shù)據(jù)的相關(guān)資料,本文介紹的非常詳細,具有參考借鑒價值,需要的朋友可以參考下2016-09-09Pytorch如何指定device(cuda or cpu)
這篇文章主要介紹了Pytorch如何指定device(cuda or cpu)問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2024-06-06numpy中的norm()函數(shù)求范數(shù)實例
這篇文章主要介紹了numpy中的norm()函數(shù)求范數(shù)實例,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-02-02如何使用Python 抓取和優(yōu)化所有網(wǎng)站圖像
我發(fā)布了一個通過FTP自動優(yōu)化新圖像的教程。這次我們將抓取整個網(wǎng)站,并在本地優(yōu)化我們遇到的圖像,按URL組織,怎么來操作呢,下面跟隨小編一起學習使用Python 抓取和優(yōu)化所有網(wǎng)站圖像的方法,感興趣的朋友一起看看吧2023-02-02python實現(xiàn)將m3u8視頻轉(zhuǎn)換成mp4的操作步驟
m3u8 是一種基于文本的媒體播放列表文件格式,通常用于指定流媒體播放器播放在線媒體流,MP4是一種基于MPEG-4 Part 12(2015)和MPEG-4 Part 14標準的數(shù)字多媒體容器格式,本文將給大家介紹python實現(xiàn)將m3u8視頻轉(zhuǎn)換成mp4的操作步驟,需要的朋友可以參考下2024-05-05