如何将 Flex 中的 ByteArray 保存到 Django 中的 FileField 中

发布于 2024-11-07 13:35:09 字数 334 浏览 0 评论 0原文

我在 Flex 应用程序的字节数组中有一些音频数据,我想将其保存到 Django 中的模型中。我假设我会使用 FileField,但我似乎无法让它工作。 (我的项目设置像这样。)我尝试过寻找在此 PyAmf 示例代码,但我无法完全让这两个结合。

如果有人有一些代码可以分享,那就太好了!

I have some audio data in a byte array in a Flex app that I would like to save to my model in Django. I assume I would use a FileField, but I can't seem to get it to work. (My project is set up like this.) I've tried looking at this sample code for PyAmf, but I can't quite get the two to combine.

If anyone has a bit of code to share, that would be lovely!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

堇年纸鸢 2024-11-14 13:35:09

Django 的 FileField 不是 blob - 它们仅存储文件系统上保存数据的路径。您需要将数据保存到磁盘并将路径放入 FileField 中。

Django's FileFields are not blobs - they only store the path to where the data is saved on the filesystem. You will need to save the data to disk and put the path into the FileField.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文