我正在尝试使用 Matplotlib 和 mpld3 和 Django 绘制折线图。它工作正常,但如果我在浏览器中点击刷新按钮重新加载页面,服务器突然停止并显示错误消息
[Segmentation fault (core dumped)]
下面我提到了我的代码。提前致谢 !!
在 view.py 中:
from django.shortcuts import render
from django.http import HttpResponse
import matplotlib.pyplot as plt , mpld3
def index(request):
fig = plt.figure()
plt.plot([1,2,3,4,5],[5,4,3,2,1],'r--')
g = mpld3.fig_to_html(fig)
return render(request,'index.html',{'a' : g})