What is difference Between Base64 and Multipart?(Base64 和 Multipart 有什么区别?)
问题描述
谁能解释一下Base64
以及Multipart
的优点是什么
Can any one explain what is the advantage of Base64
as well Multipart
我知道 Multipart 比 Base64
...
I know Multipart is faster then
Base64
...
但是仍然有很多开发人员在使用 Base64...我研究了这两个文档但我不清楚
But still many developers are using Base64...I studied both documentation but i am not clear
推荐答案
Base64
Base64 是一种通过将二进制数据转换为 radix-64 表示来将二进制数据编码为 ASCII 字符格式的方法.
我建议您不要使用 Base64 将大文件/数据上传到服务器,因为它会转换整个数据并将其发布到服务器.
Base64
Base64 is a way to encode binary data into an ASCII character format by translating it into a radix-64 representation.
I recommend you that never use Base64 for large file/data upload to server beacuse it's convert whole data and post it to server.
多部分
Multipart 是一种以字节为单位的部分形式将文件/数据上传到服务器的方法.但是,Multpart/form-data 应用于表单,因此您可以以多部分形式发送所有内容,也包括常规"数据.
Multipart
Multipart is a way to upload file/data to server in the form of part which are in bytes. Multpart/form-data is applied to a form though, so you can send everything in a multi-part form, including "regular" data also.
这篇关于Base64 和 Multipart 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Base64 和 Multipart 有什么区别?
基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01