Blogs
-
Life Cycle Hooks Vs Connecting An Apex Method To A Function
Scenario: Need to debug and verify if the necessary data is being transmitted from an Apex method to a Web Component. Possible solution: Create a property, establish a connection to the Apex method, and inspect the property’s value in one of the Life Cycle Hooks. Problem: The Apex method is invoked after all the Life…
-
Comprehensive Guide To Properties In Lightning Web Components
About Properties in Lightning Web Components In every programming language, the need for variables to store data is inevitable, and in Lightning Web Components, these variables are referred to as properties. There are three types of properties: It is recommended to avoid using private properties in the template file, and the reasons for this will…