如何将 Flex 中的 ByteArray 保存到 Django 中的 FileField 中
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.