如何在视图中渲染绘图flask
?
devices.py:
@devices_blueprint.route('/devices/test/') def test(): y = [1,2,3,4,5] x = [0,2,1,3,4] plot_url = plt.plot(x,y) return render_template('devices/test.html', plot_url=plot_url)
的test.html
Image
我试图seaborn
用这个,但即使matplolib
我无法得到任何结果.
注意:我不想保存图像并在之后加载它.