流星。如何显示值?

时间:2016-04-15 04:53:33

标签: meteor

请有人帮助我。我希望在sql“select * from table where status ='available'和(category ='notebook'或category ='LCD')”中显示meteor js中的值。请告诉我解决问题的最佳方案。

1 个答案:

答案 0 :(得分:0)

const items = SomeCollection.find({
  status: 'available',
  category: { $in: ['notebook', 'LCD'] },
}).fetch();