Fetching Account Records From @wire Decorators in Lightning Web Components through Apex Method “@AuraEnabled (cacheable=true)” in The Table Format — LWC | Fetching account records from @wire decorators in lwc

2,249 views


Hey guys, today in this post we are going to learn about How to Fetching Account Records From @wire Decorators in Lightning Web Components with Apex Method “@AuraEnabled (cacheable=true)” in The Table Format

Files we used in this post example:-

getDataWireDecoratorsWithTable.html Lightning Web Component HTML Template HTML file for used to write HTML element for user interface.

getDataWireDecoratorsWithTable.js

Lightning Web Component JavaScript It is hold @wire Decorators load functionality.

getDataWireDecoratorsWithTable.css

Lightning Web Component JavaScript It is used for table border and padding alignment.

getDataWireDecoratorsWithTable.js-meta.xml

XML Meta File It is used for where this lightning web component should be exposed.
lwcAppExampleApex.cls Apex Controller It is used for Fetching Account records from @wire Decorators with apex method "@AuraEnabled (cacheable=true)"

Live Demo

Fetching Account records from @wire Decorators in LWC -- w3web.net

 

You can download file directly from github by Click Here.

Note:: – You will get an email, so put correct email and mobile number and BEGIN YOUR JOURNEY from Today!

 

 
 

Other related post that would you like to learn in Salesforce

Step 1:- Create Lightning Web Component : getDataWireDecoratorsWithTable.html

SFDX:Lightning Web Component >> New >> getDataWireDecoratorsWithTable.html

getDataWireDecoratorsWithTable.html [Lightning Web Component HTML]

  1.    <template>
  2.     <lightning-card>
  3.         <h3 slot="title">
  4.             <lightning-icon icon-name="standard:account" size="small"></lightning-icon>  @wire Decorators in Lightning web components with apex method  @AuraEnabled (cacheable=true)        
  5.         </h3>
  6.  
  7.  
  8.         <table class="tblColPad" border="1" cellpadding="5" cellspacing="5" bordercolor="#ccc" style="border-collapse:collapse;">
  9.            <thead>
  10.                <tr>
  11.                    <th>Name</th>
  12.                    <th>Phone</th>
  13.                    <th>Industry</th>
  14.                </tr>
  15.            </thead>
  16.             <tbody>
  17.  
  18.                <template for:each={accData} for:item="accItem">
  19.                    <tr key={accItem.Id}>
  20.                        <td>{accItem.Name}</td>
  21.                        <td>{accItem.Phone}</td>
  22.                        <td>{accItem.Industry}</td>
  23.                    </tr>
  24.                </template>                 
  25.             </tbody>
  26.         </table>
  27.  
  28. <br/> <br/>
  29.    <!--Start RelatedTopics Section-->
  30. <div style="border:1px #ddd solid; padding:10px; background:#eee; margin:40px 0;">
  31.  
  32.             <p data-aura-rendered-by="435:0"><img src="https://www.w3web.net/wp-content/uploads/2021/05/thumbsUpLike.png" width="25" height="25" style="vertical-align:top; margin-right:10px;" data-aura-rendered-by="436:0"><strong data-aura-rendered-by="437:0"><span style="font-size:16px; font-style:italic; display:inline-block; margin-right:5px;">Don't forget to check out:-</span><a href="https://www.w3web.net/" target="_blank" rel="noopener noreferrer" style="text-decoration:none;" data-aura-rendered-by="440:0">An easy way to learn step-by-step online free Salesforce tutorial, To know more Click  <span style="color:#ff8000; font-size:18px;" data-aura-rendered-by="442:0">Here..</span></a></strong></p>
  33.  
  34.             <br/><br/>
  35.             <p data-aura-rendered-by="435:0"><img src="https://www.w3web.net/wp-content/uploads/2021/07/tickMarkIcon.png" width="25" height="25" style="vertical-align:top; margin-right:10px;" data-aura-rendered-by="436:0"><strong data-aura-rendered-by="437:0"><span style="font-size:17px; font-style:italic; display:inline-block; margin-right:5px; color:rgb(255 128 0);">You May Also Like →</span> </strong></p>
  36.             <div style="display:block; overflow:hidden;"> 
  37.                 <div style="width: 50%; float:left; display:inline-block">
  38.                     <ul style="list-style-type: square; font-size: 16px; margin: 0 0 0 54px; padding: 0;"> 
  39.                         <li><a href="https://www.w3web.net/lwc-get-set-lightning-checkbox-value/" target="_blank" rel="noopener noreferrer">How to get selected checkbox value in lwc</a></li>
  40.                         <li><a href="https://www.w3web.net/display-account-related-contacts-in-lwc/" target="_blank" rel="noopener noreferrer">how to display account related contacts based on AccountId in lwc</a></li>
  41.                         <li><a href="https://www.w3web.net/create-lightning-datatable-row-actions-in-lwc/" target="_blank" rel="noopener noreferrer">how to create lightning datatable row actions in lwc</a></li>
  42.                         <li><a href="https://www.w3web.net/if-and-else-condition-in-lwc/" target="_blank" rel="noopener noreferrer">how to use if and else condition in lwc</a></li>
  43.                         <li><a href="https://www.w3web.net/get-selected-radio-button-value-and-checked-default-in-lwc/" target="_blank" rel="noopener noreferrer">how to display selected radio button value in lwc</a></li>
  44.                     </ul>
  45.             </div>
  46.  
  47.             <div style="width: 50%; float:left; display:inline-block">
  48.                     <ul style="list-style-type: square; font-size: 16px; margin: 0 0 0 54px; padding: 0;"> 
  49.                         <li><a href="https://www.w3web.net/display-account-related-contacts-lwc/" target="_blank" rel="noopener noreferrer">display account related contacts based on account name in lwc</a></li>
  50.                         <li><a href="https://www.w3web.net/create-lightning-datatable-row-actions-in-lwc/" target="_blank" rel="noopener noreferrer">how to insert a record of account Using apex class in LWC</a></li>
  51.                         <li><a href="https://www.w3web.net/fetch-picklist-values-dynamic-in-lwc/" target="_blank" rel="noopener noreferrer">how to get picklist values dynamically in lwc</a></li>
  52.                         <li><a href="https://www.w3web.net/edit-save-and-remove-rows-dynamically-in-lightning-component/" target="_blank" rel="noopener noreferrer">how to edit/save row dynamically in lightning component</a></li>
  53.                         <li><a href="https://www.w3web.net/update-parent-object-from-child/" target="_blank" rel="noopener noreferrer">update parent field from child using apex trigger</a></li>
  54.                     </ul>
  55.                 </div>
  56.                <div style="clear:both;"></div> 
  57.                <br/>
  58.                 <div class="youtubeIcon">
  59.                     <a href="https://www.youtube.com/channel/UCW62gTen2zniILj9xE6LmOg" target="_blank" rel="noopener noreferrer"><img src="https://www.w3web.net/wp-content/uploads/2021/11/youtubeIcon.png" width="25" height="25" style="vertical-align:top; margin-right:10px;"/> <strong>TechW3web:-</strong> To know more, Use this <span style="color: #ff8000; font-weight: bold;">Link</span> </a>
  60.                 </div>
  61.     </div>
  62.  
  63. </div>
  64.  
  65.   <!--End RelatedTopics Section-->
  66.  
  67.     </lightning-card>
  68. </template>

Step 2:- Create Lightning Web Component : getDataWireDecoratorsWithTable.js

Note:: – You will get an email, so put correct email and mobile number and BEGIN YOUR JOURNEY from Today!
 
 

SFDX:Lightning Web Component >> New >> getDataWireDecoratorsWithTable.js

getDataWireDecoratorsWithTable.js [LWC JavaScript File]

  1.   import { api, LightningElement, track, wire } from 'lwc';
  2. import getAccountList from '@salesforce/apex/lwcAppExampleApex.getAccountList';
  3.  
  4. import {NavigationMixin} from 'lightning/navigation';
  5.  
  6. export default class getDataWireDecoratorsWithTable extends NavigationMixin (LightningElement) {
  7.   @api title;
  8.   @api greetings;
  9.   @track greeting;
  10.  
  11.     //Using @wire decorator for fatching the data from account 
  12.       @track accData;
  13.       @track errorData;
  14.      @wire(getAccountList)
  15.      dataRecord({data, error}){
  16.        if(data){
  17.            this.accData = data;
  18.        }
  19.        else if(error){
  20.            this.errorData = error;
  21.        }
  22.      }
  23.  
  24.  
  25. }

Step 3:- Create Lightning Web Component : getDataWireDecoratorsWithTable.js-meta.xml

SFDX:Lightning Web Component >> New >> getDataWireDecoratorsWithTable.js-meta.xml

getDataWireDecoratorsWithTable.js-meta.xml [LWC Meta Data XML]

  1.   <?xml version="1.0" encoding="UTF-8"?>
  2. <LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
  3.     <apiVersion>45.0</apiVersion>
  4.     <isExposed>true</isExposed>
  5.     <targets>
  6.         <target>lightning__AppPage</target>
  7.         <target>lightning__RecordPage</target>
  8.         <target>lightning__HomePage</target>
  9.       </targets>
  10.       <targetConfigs>
  11.          <targetConfig targets="lightning__AppPage">
  12.            <property name="title" type="string"/>
  13.            <property name="greetings" type="string"/>
  14.          </targetConfig>
  15.       </targetConfigs>
  16. </LightningComponentBundle>

Step 4:- Create Lightning Web Component : getDataWireDecoratorsWithTable.css

SFDX:Lightning Web Component >> New >> getDataWireDecoratorsWithTable.css

getDataWireDecoratorsWithTable.css [LWC Meta Data XML]

  1.   table.tblColPad th{background:#ddd;}
  2.   table.tblColPad th, table.tblColPad td {padding:5px !important;}

Step 5:- Create Lightning Web Component : lwcAppExampleApex.cls

SFDX:Create Apex Class >> New >> lwcAppExampleApex.cls

lwcAppExampleApex.cls [Apex Class]

  1.   public WITH sharing class lwcAppExampleApex {
  2.  
  3.     @AuraEnabled (cacheable=TRUE)
  4.     public static List<Account> getAccountList(){
  5.         List<Account> accList = [SELECT Id, Name, Phone, Industry FROM Account WHERE Name !=NULL LIMIT 5];
  6.         RETURN accList;
  7.     }
  8.  
  9. }

Fetching Account records from @wire Decorators in LWC -- w3web.net

Further post that would you like to learn in Salesforce

 


 

FAQ (Frequently Asked Questions)

What are @track and @API decorators?

A field can have only one decorator. The @api decorator simply makes a field public and allows its value to be set from the outside. The @api decorator doesn't tell LWC to observe mutations like @track does. In theabove code, example-contact-tile-object exposes its contact field as a public property.

How do you refresh wire in LWC?

To refresh Apex data provisioned via an Apex @wire , call refreshApex() . The function provisions the data using the configuration bound to the @wire and updates the cache. Note The parameter you refresh with refreshApex() must be an object that was previously emitted by an Apex @wire .

Can we have 2 wire method in LWC?

There are times were we may have multiple wire methods in the same Lightning Web Component. One wire method may be dependent on another wire method setting a value. To handle this, we can chain the wire methods in the order we need. In this example, we have two wire methods.

Related Topics | You May Also Like

 
Note:: – You will get an email, so put correct email and mobile number and BEGIN YOUR JOURNEY from Today!
 
 
  

Our Free Courses →

👉 Get Free Course →

📌 Salesforce Administrators

📌 Salesforce Lightning Flow Builder

📌 Salesforce Record Trigger Flow Builder

👉 Get Free Course →

📌 Aura Lightning Framework

📌 Lightning Web Component (LWC)

📌 Rest APIs Integration



Hi, This is Vijay Kumar behind the admin and founder of w3web.net. I am a senior software developer and working in MNC company from more than 8 years. I am great fan of technology, configuration, customization & development. Apart of this, I love to write about Blogging in spare time, Working on Mobile & Web application development, Salesforce lightning, Salesforce LWC and Salesforce Integration development in full time. [Read full bio] | | The Sitemap where you can find all published post on w3web.net

Leave a Comment