FormData.get() - Web API 接口参考 编辑
FormData
的get()方法用于返回FormData对象中和指定的键关联的第一个值,如果你想要返回和指定键关联的全部值,那么可以使用
getAll()
方法。
注意: 该方法在Web Workers中有效。
语法
formData.get(name);
参数
name
- 将要获取值的键名。
返回值
包含值的FormDataEntryValue
。
例子
下面的代码创建一个FormData对象:
var formData = new FormData();
使用FormData.append
方法添加两个数据:
formData.append('username', 'Chris');
formData.append('username', 'Bob');
接下来使用get()来回去第一个和"username"关联的值
:
formData.get('username'); // Returns "Chris"
规范
规范 | 状态 | 备注 |
---|---|---|
XMLHttpRequest get() | 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论