英文:
Can Angular send a plot to the backend
问题
我正在前端使用Angular和JavaScript,并使用AgChartOptions创建一个图表。现在我想知道是否可以将这个图表生成为图片文件并发送到后端,可能是Python。这种操作是否可行?如果可以,如何操作?
英文:
I am using Angular and Javascript on the frontend, and use AgChartOptions to create a plot. Now I wonder whether I can make this chart a picture file and send it to the backend, presumable python. Is this possible?If yes, how to do it?
答案1
得分: 2
可以的,图表API提供了getChartImageDataURL
方法,该方法返回图像的数据URL,然后你可以将其作为字符串提交给后端,例如。
英文:
Yes, you can, charts API provides getChartImageDataURL
method which returns image as data URL, then you can submit it to backend as string for example.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论