Coffeescript不是空物

Coffeescript isn't empty object

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
is object empty?

1
2
3
4
5
6
7
8
9
10
11
12
 update: (id, data) ->
    toUpdate = @find(id)
    if toUpdate isnt {}
            console.log"hi mom"
            console.log toUpdate
            toUpdate.setProperty(key, value) for own key, value of data

    return toUpdate

 find:(id) ->
    result = record for record in @storage when record.id is id
    return result or {}

考虑到以下摩卡测试

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
describe '#update', ->
    it 'should return an updated record from a given id and data when the record exists', ->
      boogie = createData()
      archive = new Archive("Dog")
      dog = archive.create(boogie)
      result = archive.update(1, {name:"Chompie", age:1})
      result.name.should.eql"Chompie"
      result.age.should.eql 1
      result.emotion.should.eql dog.emotion

    it 'should return an updated record from a given id and data when the record does not exist', ->
      boogie = createData()
      archive = new Archive("Dog")
      dog = archive.create(boogie)
      result = archive.update(50, {name:"Chompie", age:1})
      result.should.not.exist

结果是

1
2
3
4
5
6
7
8
9
10
11
12
Archive #update should return an updated record from a given id and data when the record exists: hi mom
{ id: 1,
  validationStrategies: {},
  name: 'Boogie',
  age: 2,
  emotion: 'happy' }
  ? Archive #update should return an updated record from a given id and data when the record exists: 1ms
    Archive #update should return empty when the record does not exist: hi mom
{}
    ? 1 of 13 tests failed:
    1) Archive #update should return empty when the record does not exist:
    TypeError: Object #<Object> has no method 'setProperty'

…令人惊讶,不是吗?


coffeeesccript的is(aka ==)只是javascript的===isnt(aka !=只是javascript的!==。所以你的情况是:

1
if toUpdate isnt {}

因为toUpdate和对象文字{}永远不会是同一个对象,所以始终是正确的。

但是,如果@find可以返回一个常量中可用的已知"空"对象,那么可以使用isnt

1
2
3
4
5
EMPTY = {}

find: ->
    # ...
    EMPTY

稍后:

1
2
if toUpdate isnt EMPTY
    #...

例如,考虑这个简单的代码:

1
2
3
4
a = { }
b = { }
console.log("a is b: #{a is b}")
console.log("a isnt b: #{a isnt b}")

这将在您的控制台中提供:

1
2
a is b: false
a isnt b: true

但这是:

1
2
3
4
5
6
class C
    EMPTY = { }
    find: -> EMPTY
    check: -> console.log("@find() == EMPTY: #{@find() == EMPTY}")

(new C).check()

会说:

1
@find() == EMPTY: true

演示:http://jsfiddle.net/mizzy/7jgdq/

因此,您需要另一种方法来检查toUpdate是否为空。您可以计算toUpdate中的属性:

1
if (k for own k of toUpdate).length isnt 0

或者您可以使用上面概述的特殊EMTPY常量方法。还有其他各种方法可以检查空对象,Ricardo Tomasi?建议如下:

  • 下划线提供了_.isEmpty,基本上是for循环方法,具有一些特殊情况处理和短路。
  • 下划线还提供了_.values,因此您可以查看_(toUpdate).values().length。这在内部调用map,如果可用,它将是本地map函数。
  • 您甚至可以使用JSON.stringify(toUpdate) is '{}'通过JSON,这对我来说有点脆弱,而且还比较圆滑。
  • 您可以使用Object.keys而不是for循环:Object.keys(toUpdate).length isnt 0。虽然并非所有地方都支持keys,但它将与节点、最新的非IE浏览器和IE9+一起工作。
  • 糖也有Object.isEmpty,jquery有$.isEmptyObject
  • 短路for回路似乎是检查空虚的最快方法:

    1
    2
    3
    4
    (obj) ->
        for k of toUpdate
            return true
        false

    这假设您不需要own来避免重复错误的事情。但考虑到这只是一个测试套件,而且空虚测试在您的代码中几乎肯定不会成为瓶颈,我将使用您拥有的下划线、糖或jquery(如果您需要可移植性,并且必须处理通常的浏览器胡说八道)、Object.keys(x).length,如果您知道它将可用,以及(k for own k of toUpdate).length,如果您没有e库,必须处理浏览器的废话,不确定toUpdate是否是一个简单的对象。