我从JavaScript上的文件对象获取密钥,但是我不知道为什么Objects方法不起作用。
我尝试了Object.keys()和Object.getOwnPropertyNames()。为什么这些方法不起作用?
这里是例子:
var obj = {name:'my_name',id:1,value:'my_val'}
const file = document.getElementById('fileToUpload').files[0];
console.log('Object.keys(file)',Object.keys(file));
//Array []
console.log('Object.keys(obj)',Object.keys(obj));
//Array [3]
console.log('Object.getOwnPropertyNames(file)',Object.getOwnPropertyNames(file));
//Array []
console.log('Object.getOwnPropertyNames(obj)',Object.getOwnPropertyNames(obj));
//Array [3]
console.log('file.name',file.name);
//name.type
console.log('obj.name',obj.name);
//my_name
console.log('Object',file);
//File {...}
console.log('Object',obj);
//Object {...}
console.log('type',typeof file);
//object
console.log('type',typeof obj);
//object
答案 0 :(得分:0)
Object.keys()
和Object.getOwnPropertyNames()
仅返回自己的属性,无论它们是否可枚举。在这种情况下,您尝试获取的属性属于其prototype
。所以这些方法行不通。
您仍然可以通过执行以下操作来获取其属性:
const attributes = [];
for (attribute in file) {
attributes.push(attribute);
}