假设我想where
和pluck
我的应用程序的鸟。
首先我想找到所有word_type
的名词。
然后我想采摘word
属性,这样最终的结果是:
所有属于名词的词。
["Lion", "Capybara", "Cat"]
当我尝试:
@words = new Project.Collections.WordsCollection()
@words.where(word_type: "noun").pluck("word_type")
它返回:
this.words.where({word_type: "noun"}).pluck is not a function