在asp.net mvc中使用jquery进行Ajax文件上传
我必须在视图中输入不同的数据,其中包括用于文件上传的部分视图。我希望实现将文件上传到数据库而不丢失我认为的其他数据。 IE。我需要使用 jquery 将文件以字节流形式上传到数据库。我怎样才能实现这个目标? 感谢之前的所有帮助。
I have to enter different data in a view which includes a partial view for file upload. I want to achieve uploading file to database without loosing other data in my view. ie. i need to upload a file to database in a byte stream using jquery. How can i achieve this??
Thanks for all help in prior.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会对图像进行 Base64 编码,并将其发布到服务器,该服务器可以将 Base64 解码为数据库的字节 blob。这可能是客户端和服务器端痛苦最小的路径。
I would base64 encode the image, and post it to the server that could decode the base64 into a byte blob for the database. That would probably be the path of least pain, both client and server side.