1

我有这个咖啡脚本:

y = Object
y.x = true;
result = false
if 'x' in y
    result = true

生成这个javascript:

var result, y,
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) {   if (i in this && this[i] === item) return i; } return -1; };

y = Object;

y.x = true;

result = false;

if (__indexOf.call(y, 'x') >= 0) {
   result = true;
}

显然结果应该为真,但生成的 javascript 不返回此结果。我知道我可以将该部分作为 javascript 转义,但这似乎很老套。任何帮助是极大的赞赏。

4

1 回答 1

2

刚刚发现我需要使用'of'而不是'in'。

于 2012-07-23T13:01:38.653 回答