繁体   English   中英

为什么 XMLHttpRequest 对象的属性只能通过 console.log() 打印?

[英]Why properties of an XMLHttpRequest object are only printable through console.log()?

var obj = new XMLHttpRequest();
console.log("Object.keys():",Object.keys(obj));
console.log("Object.getOwnPropertyNames():",Object.getOwnPropertyNames(obj))
console.log("Object.entries():",Object.entries(obj))
console.log("JSON.stringify():",JSON.stringify(obj))

console.log("console.log:"); console.log(obj)

输出:

Object.keys(): []
Object.getOwnPropertyNames(): []
Object.entries(): []
JSON.stringify():{}
控制台日志:
XMLHttpRequest {onreadystatechange: null, readyState: 0, timeout: 0, withCredentials: false, upload: XMLHttpRequestUpload, ...}

如何在 javascript 中创建这样一个对象,其属性仅使用console.log(obj)打印,但不由上述任何函数返回?

我已经尝试使用constructor function创建对象, object.create() (使用enumerable:false ), Object.assign() ,使用getters ,从类中初始化,从扩展类中初始化等

这与 WhatWG console.log规范有关

实现如何打印 args 取决于实现,但实现应该用空格或类似的东西分隔对象,因为这已成为开发人员的期望。

规范使输出格式非常模糊,由实现决定打印什么。

您可以使用称为 Symbol 的新数据类型为 JavaScript 对象创建键。

链接: https : //developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol

我附上了一个示例代码,您可以在控制台中看到输出。

 let nameSymbol = Symbol('name'); function Person (name) { this[nameSymbol] = name; } Person.prototype.toString = function toPersonString() { var symArr = Object.getOwnPropertySymbols(this); for (let sym of symArr) { this[sym.description] = this[sym]; delete this[sym]; } return this; } const dummyObject = new Person('random value'); console.log("Object.keys():",Object.keys(dummyObject)); // [] console.log("Object.getOwnPropertyNames():",Object.getOwnPropertyNames(dummyObject)) // [] console.log("Object.entries():",Object.entries(dummyObject)) // [] console.log("JSON.stringify():",JSON.stringify(dummyObject)) // {} console.log("console.log:", dummyObject.toString()); //  {name: "random value"}

XMLHttpRequest 实例上的所有属性都是继承的属性,我的意思是它们不存在于实例本身,而是存在于其原型链上。

这解释了为什么

const x = new XMLHttpRequest()
// all these methods consider only instance properties (owned properties) and thats why they return empty results
console.log(Object.keys(x)) // []
console.log(Object.getOwnPropertyNames(x)) // []
console.log(Object.entries(x)) // []
console.log(JSON.stringify(x)) // {}


// however if you try this you will get the results you want

console.log(Object.keys(x.__proto__)) // will not return symbol keys
console.log(Object.getOwnPropertyDescriptors(x.__proto__)) // will return descriptiors of every property whether its symbol or not

// you can see these results also by logging the xmlRequest, and looking at its __proto__ property in the console

// i will be calling the XMLHttpRequest instance for short as xmlRequest

您可以像这样简单地创建这样一个对象

class A {}
A.prototype.someProperty = 10
const a = new A()
// again if you try these you will get results like the XMLHttpRequest instance
console.log(Object.keys(a)) // []
console.log(Object.getOwnPropertyNames(a)) // []
console.log(Object.entries(a)) // []
console.log(JSON.stringify(a)) // {}

但是,当您尝试使用console.log(a)您不会像使用 xmlRequest 实例那样看到someProperty ,这是意料之中的,因为它是一个继承属性。 您在记录 xmlRequest 时看到这些属性的原因是该对象正在接受特殊处理。

幸运的是,您可以使用chrome 自定义对象格式化程序重新创建这种特殊处理,为此您必须从 chrome 开发人员工具设置中启用自定义格式化程序。

window.devtoolsFormatters = [{
    header: function(obj){
        if (!(obj instanceof A)){
         return null;
        }
        // to get the exact results like the xmlRequest, you need to remove quotes from the object keys in the json string, can be done with a regex
        return ["div",{}, JSON.stringify(obj.__proto__)]
    },
    hasBody: function(){
        return false;
    }
}]

class A {}
A.prototype.someProperty = 10

console.log(new A()) // {"someProperty":10}

如何在 javascript 中创建这样一个对象,其属性仅使用 console.log(obj) 打印,但不由上述任何函数返回?

我找到的一个接近的解决方案下面的一个。 这将使用console.log(obj)打印属性。 然而 obj 是一个代理。

在 chrome 控制台上,结果与XMLHttpRequest输出相同(类为Proxy )。 在 firefox 控制台上,它是Proxy类的表示,因此并不完全相同。


    const obj = new Proxy({prop1:"value1", prop2: "value2"}, {ownKeys: _=>[]});

    console.log("Object.keys():",Object.keys(obj));
    console.log("Object.getOwnPropertyNames():",Object.getOwnPropertyNames(obj))
    console.log("Object.entries():",Object.entries(obj))
    console.log("JSON.stringify():",JSON.stringify(obj))
    console.log(obj)

结果:

Object.keys(): []
Object.getOwnPropertyNames(): []
Object.entries(): []
JSON.stringify():{}
控制台日志:
代理 {prop1: "value1", prop2: "value2"}

console.log(obj.prop1) / obj.prop1="newValue"仍然有效。

Object.keys :只给出对象自己的可枚举属性。

Object.getOwnPropertyNames :提供直接在给定对象中找到的可枚举和不可枚举属性。

Object.entries :给出对象自己的可枚举字符串键控属性对。

JSON.stringify :只考虑对象的可枚举属性。


创建您自己的此类对象

您可以使用Object.create来创建一个新对象,使用现有对象作为新创建对象的原型。

 obj1 = { key1: 'some key' }; var obj = Object.create(obj1); console.log("Object.keys():",Object.keys(obj)); console.log("Object.getOwnPropertyNames():",Object.getOwnPropertyNames(obj)) console.log("Object.entries():",Object.entries(obj)) console.log("JSON.stringify():",JSON.stringify(obj)) console.log("console.log:"); console.log(obj)

这是因为原型在 Javascript 中有效,这才是真正的原因。

当您从原型创建对象实例时,将不会显示__proto__内的属性(不可枚举的属性)

例如,尝试:

function MyXMLHttpRequest(){};
MyXMLHttpRequest.prototype.name = "Edward"
var obj = new MyXMLHttpRequest();

console.log("Object.keys():",Object.keys(obj));
console.log("Object.getOwnPropertyNames():",Object.getOwnPropertyNames(obj))
console.log("Object.entries():",Object.entries(obj))
console.log("JSON.stringify():",JSON.stringify(obj))
console.log("console.log:"); console.log(obj)
console.log(obj.name)

你会看见:

控制台打印

为什么 XMLHttpRequest 对象的属性只能通过 console.log() 打印?

这不是真的

var obj = new XMLHttpRequest();
for(var key in obj) console.log(key);

根据描述回答问题

如何在 javascript 中创建这样的对象,其属性仅使用打印

  var obj = Object.create({ foo: "foo", constructor: function() {} });

如果你想隐藏for in属性for in你应该将enumerable属性设置为false以获得所需的属性:

Object.defineProperty(obj, 'foo', {
  value: 42,
  enumerable: false
});

我认为这是最实用的方法。它会帮助你

class User {
  //this is a private field
  #name
  get Name() {
    return this.#name
  }
  set Name(val) {
    this.#name = val
  }
}

var obj = new User()
obj.Name = 'test'

console.log('Object.keys():', Object.keys(obj))
console.log('Object.getOwnPropertyNames():', Object.getOwnPropertyNames(obj))
console.log('Object.entries():', Object.entries(obj))
console.log('JSON.stringify():', JSON.stringify(obj))

console.log('console.log:')
console.log(obj)
console.log(obj.Name)

这是它的编译代码

function _classPrivateFieldSet(receiver, privateMap, value) {
  var descriptor = privateMap.get(receiver)
  if (!descriptor) {
    throw new TypeError('attempted to set private field on non-instance')
  }
  if (descriptor.set) {
    descriptor.set.call(receiver, value)
  } else {
    if (!descriptor.writable) {
      throw new TypeError('attempted to set read only private field')
    }
    descriptor.value = value
  }
  return value
}
function _classPrivateFieldGet(receiver, privateMap) {
  var descriptor = privateMap.get(receiver)
  if (!descriptor) {
    throw new TypeError('attempted to get private field on non-instance')
  }
  if (descriptor.get) {
    return descriptor.get.call(receiver)
  }
  return descriptor.value
} // Try edit message
class User {
  constructor() {
    _name.set(this, { writable: true, value: void 0 })
  }
  get Name() {
    return _classPrivateFieldGet(this, _name)
  }
  set Name(val) {
    _classPrivateFieldSet(this, _name, val)
  }
}
var _name = new WeakMap()
var obj = new User()
obj.Name = 'test'
console.log('Object.keys():', Object.keys(obj))
console.log('Object.getOwnPropertyNames():', Object.getOwnPropertyNames(obj))
console.log('Object.entries():', Object.entries(obj))
console.log('JSON.stringify():', JSON.stringify(obj))
console.log('console.log:')
console.log(obj)
console.log(obj.Name)

这是在铬上编译版本的结果在此处输入图片说明

这应该可以解决问题。

var obj = Object.create({
    get name(){
        return 'I go only to console.log()';
    }
});
console.log("Object.keys():",Object.keys(obj));
console.log("Object.getOwnPropertyNames():",Object.getOwnPropertyNames(obj));
console.log("Object.entries():",Object.entries(obj));
console.log("JSON.stringify():",JSON.stringify(obj));

console.log("console.log:", obj);

你可以这样做:

Object.defineProperty(obj, 'key', {
    enumerable: false,
    value: '123'
});

具体来说, enumerable thingie 隐藏了属性。

有关更多信息,请参阅此页面: https : //developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty

更新:

以下方法(上述方法的改进版本)似乎隐藏了所有提到的检查的属性,尽管它有点冗长:

var proto = {};
Object.defineProperty(proto, "key", {
    get: function () { return 123; }
});

var obj = Object.create(proto);

console.log(obj); // {}
console.log(Object.getOwnPropertyNames(obj)); // []
console.log(obj.key); // 123

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM