FormData.getAll() - Web API 接口参考 编辑
getAll()
方法会返回该 FormData
对象指定 key 的所有值。
注意: 该方法在 Web Workers 中可用。
语法
formData.getAll(name);
参数
name
- 一个
USVString
表示要检索的 key 名称。
返回
一个 FormDataEntryValue
数组。
示例
下列代码会先创建一个空的 FormData
对象:
var formData = new FormData();
使用 FormData.append
添加两个 username 的值:
formData.append('username', 'Chris');
formData.append('username', 'Bob');
下列 getAll()
方法会返回一个数组,包含了所有 username
的值:
formData.getAll('username'); // Returns ["Chris", "Bob"]
规范
规范 | 状态 | 说明 |
---|---|---|
XMLHttpRequest getAll() | Living Standard |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 50.0 | 39.0 (39.0) | 未实现 | (Yes) | 未实现 |
Available in web workers | 50.0 | 39.0 (39.0) | 未实现 | (Yes) | 未实现 |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | Firefox OS (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | 未实现 | 50.0 | (Yes) | (Yes) | 未实现 | (Yes) | 未实现 | 50.0 |
Available in web workers | 未实现 | 50.0 | (Yes) | (Yes) | 未实现 | (Yes) | 未实现 | 50.0 |
相关链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论