English 中文(简体)
定义对象上的获取器, 以便所有未定义的属性查找返回“ ” 。
原标题:Define getter on object so all undefined property lookups return ""

基本上,我需要能够做到这一点:

var obj = {"foo":"bar"},
    arr = [];
with( obj ){
   arr.push( foo );
   arr.push( notDefinedOnObj ); // fails with  ReferenceError: notDefinedOnObj is not defined 
}
console.log(arr); // ["bar", ""] <- this is what it should be.

我在找一个“全球”等量, 以便返回所有未定义的属性的空字符串(注意这与 undered 的属性不同)。

最佳回答
问题回答

在javascript 中,没有全球缺失的成员处理器。 您需要引入函数来抽取行为 。

function getOrEmpty(obj, name) {
  if (!obj.hasOwnProperty(name)) {
    return "";
  }
  return obj[name];
}

var obj = {"foo":"bar"},
    arr = [];
arr.push(getOrEmpty(obj, "foo"));
arr.push(getOrEmpty(obj, "someUndefinedProperty"));
console.log(arr);

Proxy. create 似乎不再是一个东西了。

这里举个新例子:

const p = new Proxy({foo:1}, {
    get(obj, name) {
        return Object.hasOwnProperty.call(obj, name) ? obj[name] :   ;
    }
})

console.log(p.foo);
console.log(p.bar);

您可以使用它来做一些有趣的小事, 比如创造反应助手 :

const cc = new Proxy(Object.create(null), {
    get(proxy, name) {
        return ({className,...props}) => React.createElement(name, {className: classcat(className), ...props})
    }
})

<cc.tr className={[theme.tr,theme.hrow]}>...</cc.tr>
// renders: <tr class="datatable_tr--2vnM1 datatable_hrow--_PG2G">...</tr>

ES6 和 ES6 以上, 您可以使用代理服务器, 就像被接受的答案建议的那样 。 但如果您被 ES5 粘住, 请在此给出答案 。

以ES5为例,你必须建立自己的班级, 就像这个快速的例子一样

function StrictObject() {
  var values = Object.create(null);
  this.set = function (key, value) {
    values[key] = value;
  };
  this.get = function (key) {
    if (!(key in values)) {
      throw new Error("Could not find " + key);
    }
    return values[key];
  };
}
var obj = new StrictObject();

obj.set( dad ,  homer );
console.log(obj.get( dad ));    // homer
console.log(obj.get( uncle ));  // throws error




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签