如何使用 OPA 保存/上传文件
如何在 opa 服务器上上传文件?是否可以将文件存储在 opa 数据库中,还是必须将其复制到文件系统上?
stdlib.io 模块似乎不提供存储文件的功能。
谢谢
How can I upload a file in opa server ? Is it possible to store the file in an opa database, or must I copy it onto the filesystem ?
The stdlib.io modules doesn't seem to offer the ability to store file.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该看一下上传小部件:
http://doc.opalang.org/api/#upload .opa.html/!/value_stdlib.upload
通过
process
回调,您可以决定将文件存储在 opa 数据库中。You should have a look at the Upload widget:
http://doc.opalang.org/api/#upload.opa.html/!/value_stdlib.upload
With the
process
callback you can decide to store the file in the opa database.