0
請有人幫助我。我想在sql中顯示流星j中的值,例如select * from table where status ='available'和(category ='notebook'or category ='LCD')「。請給我看看我的問題的最佳解決方案。流星。如何顯示值?
請有人幫助我。我想在sql中顯示流星j中的值,例如select * from table where status ='available'和(category ='notebook'or category ='LCD')「。請給我看看我的問題的最佳解決方案。流星。如何顯示值?
const items = SomeCollection.find({
status: 'available',
category: { $in: ['notebook', 'LCD'] },
}).fetch();
我需要把這個編碼在服務器或客戶端? –
您是否正在運行此查詢以將值顯示給用戶?如果是這樣,我想你會發布'SomeCollection'文件到客戶端,然後在助手中運行上述。如果不知道確切的用例,我真的無法添加更多內容。 –
感謝您的回覆。它對我有用的代碼。 –