您可以在 OpenRasta 中同时发布文件和资源吗?
是否可以在 OpenRasta 中同时上传文件并发布元数据(在帖子正文中)?如果是这样,你有一个如何做到这一点的例子吗?
Is it possible to upload a file, and post meta data (in the post body) at the same time in OpenRasta? and if so, do you have an example of how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否理解这个问题?当您从 html 表单上传文件时,您会得到格式化为 multipart/form-data 的整个表单,这意味着每个字段都有自己的值与文件一起发送。
您只需将处理程序方法定义为 Post(string formValue, IFile file) ,它就会按原样工作。
I'm not sure I understand the question? When you upload a file from an html form, you get the whole form formatted as multipart/form-data, which means each field gets its own value sent alongside the files.
You only need to define your handler method as Post(string formValue, IFile file) and it'll work as is.