2

有没有办法同时设置一个对象的多个变量。例如我有以下代码:

_p.a=1; 
_p.b=2;
_p.c=3;

我想做的是如下所示:

_p.[{'a': 1, 'b': 2, 'c': 3}];  // this code does not do the trick

有没有办法做这样的事情?

4

3 回答 3

3

您可以使用Object.defineProperties

var _p = {
  foo: 'bar'
};
Object.defineProperties(_p, {
  'a': {
    value: 1,
    writable: true,
    enumerable: true
  },
  'b': {
    value: 2,
    writable: true,
    enumerable: true
  },
  'c': {
    value: 3,
    writable: true,
    enumerable: true
  }
});
console.log(_p); //Object {foo: "bar", a: 1, b: 2, c: 3}
于 2013-04-14T08:58:45.103 回答
0

您有一个对象 _p 并希望使用另一个对象来扩展它 - 在您的情况下,是一个文字。

jquery 有一个实用程序:

http://api.jquery.com/jQuery.extend/

 $.extend(_p, {'a': 1, 'b': 2, 'c': 3});  

下划线也是如此:

http://underscorejs.org/#extend

_.extend(_p,  {'a': 1, 'b': 2, 'c': 3})
于 2013-04-14T09:03:05.553 回答
0

我想你可以使用这样的东西:

Object.prototype.setProps = function(props){
    for(var i in props){
        if(props.hasOwnProperty(i))
            this[i] = props[i];
    }
}

和:

_p.setProps({a: 1, b: 2, c: 3});
于 2013-04-14T09:04:59.537 回答