1
我一直在網上瀏覽如何使用Deepstream查詢MongoDB。我跟着他們的文檔,但它不工作,這是我的示例代碼:使用MongoDB進行Deepstream查詢
const testQuery = JSON.stringify({
table: 'test',
query: [
[ 'name', 'eq', 'test2' ]
]
})
const results = client.record.getList('search?' + testQuery);
results.whenReady((res)=>{
console.log(results);
})
有什麼缺失?我沒有使用RethinkDB,我直接連接到我的mongonDb。提前致謝。
謝謝你這麼多的響應。 。我會深入挖掘這一點。 。感謝您的網址。 。 :) –