图像上传到JavaScript中的Web服务

前端之家收集整理的这篇文章主要介绍了图像上传到JavaScript中的Web服务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要从 javascript上传图像到web服务.我必须发送一个json字符串文件(图像).在java中我们有MultipartEntity.我在java中有以下代码
HttpPost post = new HttpPost( aWebImageUrl2 );
MultipartEntity entity  = new MultipartEntity( HttpMultipartMode.BROWSER_COMPATIBLE );
// For File parameters
entity.addPart( "picture",new FileBody((( File ) imgPath )));
// For usual String parameters
entity.addPart( "url",new StringBody( aImgCaption,"text/plain",Charset.forName( "UTF-8" )));
post.setEntity( entity );

现在我需要在javascript中进行相同的图片上传.
但在javaScript中我找不到任何相当于MultipartEntity的东西.请建议任何解决方案.

解决方法

对于上传图像,我使用 Valum’s ajax upload pluginjQuery form plugin,允许以ajax方式提交普通表单.

如果您将使用POST请求,请不要忘记使用MAX_FILE_SIZE隐藏属性

< input type =“hidden”name =“MAX_FILE_SIZE”value =“20000000”>

请注意,它必须位于文件输入字段之前.它以字节为单位,因此这会将上传限制为20MB.有关详细信息,请参阅PHP documentation.

原文链接:https://www.f2er.com/js/157417.html

猜你在找的JavaScript相关文章