Tag: promises

  • How to retrieve values from a Promise in Angular?

    I was trying to fetch values from Pouch DB through Angular , based on specific attribute values , say “fetch all records with the name ‘Vijay’”. I faced a difficulty in doing it. Pouch DB has a neat API pouchdb.find() which returns a Promise and not the actual result. It is an asynchronous method. The…