post提交数据的编码方式
Postman是一款强大的API调试工具,在执行post请求时候会发现body有4种格式选项,那么这四种各是什么含义,及使用场景呢,各方检索后,总结如下
虽然Postman中看到的是form-data,x-www-form-urlencoded,raw,binary,但真实提交的数据格式并不是这4种方式,而是multipart/form-data,application/x-www-form-urlencoded,application/json,text/xml。
application/x-www-form-urlencoded
When a web browser sends a POST request from a web form element, the default Internet media type is “application/x-www-form-urlencoded”.[8] This is a format for encoding key-value pairs with possibly duplicate keys. Each key-value pair is separated by an ‘&’ character, and each key is separated from its value by an ‘=’ character. Keys and values are both escaped by replacing spaces with the ‘+’ character and then using URL encoding on all other non-alphanumeric[9] characters.
以上描述摘自WIKI
关于构建打包出现"JavaScript heap out of memory"
Cordova开发常见问题
在利用ionic或者直接使用Cordova开发会经常遇见些问题,这里总结下,
本文持续更新
- Android版,代号、标记和细分版本 (Build) 号关系
- crosswalk-webview是否需要
- config.xml文件修改,平台重新添加?
- [IOS-相册权限](#Missing Info.plist key)
- IOS-打包上传,构建版本中不显示
- Could not find an installed version of Gradle
- com.android.ide.common.process.ProcessException: Failed to execute aapt
代号、标记和细分版本 (Build) 号关系
代号 | 版本 | API级别 |
---|---|---|
Nougat | 7.1 | API 级别 25 |
Nougat | 7.0 | API 级别 24 |
Marshmallow | 6.0 | API 级别 23 |
Lollipop | 5.1 | API 级别 22 |
Lollipop | 5.0 | API 级别 21 |
KitKat | 4.4-4.4.4 | API 级别 19 |
Jelly Bean | 4.3.x | API 级别 18 |
Jelly Bean | 4.2.x | API 级别 17 |
Jelly Bean | 4.1.x | API 级别 16 |
Ice Cream Sandwich | 4.0.3-4.0.4 | API 级别 15,NDK 8 |
最新最全信息,点击查看官网文档