我想爲表中的每一行數據寫一個詳細頁面。我想使用每行的數據爲每個頁面動態生成一個matplotlib圖形。在Django中使用matplotlib通用視圖
我試過了普通視圖的代碼,它的工作原理。但是,當與detail_view
頁面一起使用時,圖像顯示爲斷開的鏈接。我應該在DetailView
類中包含哪些內容來爲每個頁面生成圖表?
graph.py
:
def plotResults(request):
p=get_object_or_404(Read_alignment,pk=id)
x =[]
y=[]
x.append(p.start)
x.append(p.stop)
y.append(p.count)
y.append(p.count)
fig=plt.figure()
ax= fig.add_subplot(311)
ax.set_xlim(right=30)
ax.step(x,y,'-',where='post', label='post')
canvas = FigureCanvas(fig)
response= HttpResponse(mimetype='image/png')
canvas.print_png(response)
return response
url.py
:
url(r'^(?P<pk>\d+)/align/plotResults.png$',plotResults),
url(r'^(?P<pk>\d+)/align/$',AlignDetailView.as_view(), name='AlignDetailView'),
views.py
:
class AlignDetailView(DetailView):
model = Read_alignment
def get_queryset(self):
queryset= Read_alignment.objects.filter(chr__icontains=3l)
return queryset
def get_context_data(self, **kwargs):
context = super(AlignDetailView,self).get_context_data(**kwargs)
context['alignment'] = self.object
return context
我應該如何將圖形鏈接到模板,最好不使用靜態或媒體標籤?是否可以在不將PNG圖像保存到靜態文件夾的情況下生成圖形?
您能否給出關於2.2的更多細節? – Ger