Edupala

Comprehensive Full Stack Development Tutorial: Learn Ionic, Angular, React, React Native, and Node.js with JavaScript

What are angular hostbinding and angular hostlistener ?

An angular directive is instructions or guidelines for rendering a template. The directive allows us to change the appearance or behavior of a DOM element. An Angular offers lots of built-in directives, which we had learned in the previous article. We can create our own custom directive to have a feature that is specific to […]

Angular Component LifeCycle

In Angular, the component has a lifecycle that begins with their initial instantiation and continues with their rendering until they’re destroyed and removed from the application.  Whenever a  new component is created, the Angular component goes through a couple of different phases in this creation process and it will actually give us a chance to […]

Ionic WordPress API – CRUD operation

This article continuation of our previous post where we have learned how to authenticate from our ionic application to the WordPress back-end. In this tutorial, we will further add additional features to our previous application to perform CRUD operations on WordPress posts. We had already added an HTTP interceptor to intercept our HTTP request. The […]

Ionic 6 implementing WordPress REST API

WordPress version 4.8 and later support REST API, we don’t need any plugin to create REST API. In this article and few articles, we will implementation following features: Authentication to WordPress site using JWT plugin. CRUD operation on post on WordPress site. Woo commerce implementation of our Ionic application. To access the REST interface of […]

Ionic Data binding in details

Ionic Angular data binding is the synchronization of elements of the component UI widget to the data in your component classes, and vice versa, managed by Angular. It allows communication between the template and components class. Ionic data binding can be one-way or two-way data binding. With data binding, we can control the user interface of our components […]

Scroll to top