Tag: angular

  • How to search documents in Pouch DB through Angular, based on specific field?

    Through Mango queries. Pouch DB supports the feature of querying documents based on field values through a separate plugin and calls this feature as ‘Mango queries’. So the first step to avail this feature is to install it : Assumption : you have already installed pouch db and able to save documents( Refer : https://fullstackdeveloper.guru/2020/03/21/how-to-integrate-pouch-db-with-angular/)…

  • How to integrate Pouch DB with Angular ?

    I have been exploring with developing offline first web applications and stumbled upon Pouch DB recently . Pouch DB impressed me. It is a very simple but effective way to store data offline (in the browser) and then sync it with database on the cloud (through Couch db). Pouch DB and Couch DB work hand…

  • How to remove an item from a list of displayed items in angular?

    Lets say you are displaying a list of items in a table using angular . The template code might look like this: I am using bootstrap here and passing the id of the product that I want to delete when user clicks on delete button. Here is the typescript code : I have added only…