嗯,我是新来的ember js,我被困在一个地方。我想知道如何使用ember-cli-sofa一次检索所有文件?好吧,我使用couchdb作为后端,ember-cli-sofa有助于与数据库交互。请提供任何提示如何解决这个问题。
答案 0 :(得分:0)
如果你没有使用模特就好了,
let db = store.get('db.main.documents');
db.all({ include_docs: true }); // => Promise
db.view('ddocName', 'viewName', { include_docs: true }); // => Promise
db.all
调用_all_docs
而db.view
调用/_design/<ddoc>/_view/<view>