.serviceから.controllerでユーザーの値を取得したいのですが、どうすればいいですか?誰も助けることができますか?ここで.controllerの.serviceから値を取得するにはどうすればいいですか?
app.controller("myCtrl", function($scope, $http, $pouchDB) {
$pouchDB.setDatabase("infoDB");
$pouchDB.allDocs();
}
app.service("$pouchDB", ["$rootScope", "$q", function($rootScope, $q) {
this.allDocs = function(docs){
database.allDocs({
include_docs: true
})
.then (function(result){
for (var i = 0; i < result.rows.length; i++){
var users = result.rows[i].doc;
}
});
}
}