我正在尝试在由 azure 函数生成的 HTML 中嵌入图像。当我在 localhost 中运行它时,我可以看到图像,但是当我将其转换为 azure 函数时,它会抛出一个损坏的缩略图 image.iam 使用 matplotlib 保存绘图
plt.savefig(f'{basepath}/plot.png')
这会将它保存到一个临时路径,然后我在我的 HTML 内容中使用它
<div class="image">
<img src="""f'../{basepath}/plot.png'""">
</div>