key difference b/w track and api is : 1. track is used to observe the changes in properties object or array whereas api is used to make the property or method in a js file to be public so that the parent component can pass the data to the child component. Can we perform DML inside the wire or not? No, we cannot perform DML inside the wire as it is used only to retrieve the data from the salesforce database.
@haribabuk51628 ай бұрын
@track decorator is used in some properties only in lwc like array and object,if we want to change any properties in the array or object to make that properties reactive we can use @track decorator for an array or object. @Api decorator -@Api decorator is used to make property public , generally we used api properties in child component to receive the data from the parent component. we cannot perform DML operation inside wire, if we want to perform DML in imperative method for that we need to remove @AuraEnableCacheable = true for an apex method
@TechJourneyWithAnkit7 ай бұрын
Correct
@saisagar9217 ай бұрын
Track is used with properties to track changes in Arrays or Objects Wire is Used with properties or functions to read data from apex No,we cant perform DML Inside wire Method Thank you so much sir for your videos and clear explanation
@TechJourneyWithAnkit7 ай бұрын
Glad you found this helpful
@ashwinkubde52328 ай бұрын
==> No, we cannot perform DML operations in wire since wire services are read-only services but we have workaround to perform DML we have to remove catchable=true and use it imperative ==> @track is internal to the component. @api expose a component's property or method to the parent component, so that parent can access it.
@TechJourneyWithAnkit8 ай бұрын
Correct
@PoojaSinghal-cl6wj8 ай бұрын
1. Track decorator - used with properties to track changes in arrays or objects Wire decorator - used with properties or functions to read data from apex 2. we can’t perform DML inside wire
@TechJourneyWithAnkit8 ай бұрын
Correct
@kumarvenkat7397 ай бұрын
Thank you so much Sir, I cannot finish a video without saying a Big THANK YOU to you
@TechJourneyWithAnkit7 ай бұрын
Glad you liked it
@sunilbihani75818 ай бұрын
Thank you so much @Ankit Sir. Its great.
@TechJourneyWithAnkit8 ай бұрын
Glad you liked it
@kundlikyewale14647 ай бұрын
1. Track decorator - Used with properties to track changes in arrays or objects if any change occurs in track properties it will render the component Wire decorator - Used with properties or functions to read data from the apex where @AuraEnabled required 2. We can’t perform DML inside wire because which internally perform read operation to access the data
@TechJourneyWithAnkit7 ай бұрын
Correct
@sonalijadhav94463 ай бұрын
Get the contacts related to account and show it in a data table and display one New button to create new contact record and associate that to the Account and after creating it should display in data table without page refresh LWC interview scenario
@naj72134 ай бұрын
can we call wire method using LWC life cycle hooks? if yes, in which LWC life cycle hook?
@TechJourneyWithAnkit4 ай бұрын
Wire method is a seperate process. If you have to invoke it in life cycle change the parameter of wire in connected callback
@haribabuk51628 ай бұрын
Thanks for giving these type of knowledge
@TechJourneyWithAnkit8 ай бұрын
Glad you liked it
@shrutiggundewar8 ай бұрын
Questions which were asked during interview- 1. There is multicurrency field created, how can we display the value of this field in lwc with currency 2. Create a login page on experience site with two fields - username and password. Upon click of submit button authenticate the credentials and accordingly show next page or error message.
@TechJourneyWithAnkit8 ай бұрын
Will consider this in upcoming videos
@m.balaji13252 ай бұрын
Thankyou sir very informative
@TechJourneyWithAnkit2 ай бұрын
Most welcome
@raghavendrasharma24668 ай бұрын
One of my interview, interviewer ask me if we make call-out from lwc, and response come bit late then how can we resolve this issue that response come fast.
@luciferbhoi8 ай бұрын
What would be the answer
@TechJourneyWithAnkit8 ай бұрын
I am not sure. There is something wrong in the question
@NaveenKumar-sd6mx8 ай бұрын
To make the response from the Lwc system faster, you can: 1. Make sure the most critical calls are handled first. 2. Simplify the steps needed to handle calls to reduce delays. 3. Ensure requests are sent through the quickest and most efficient paths.
@anilkumarsahu85466 ай бұрын
excellent!!!
@TechJourneyWithAnkit6 ай бұрын
Thank you! Cheers!
@TheBeastBananas8 ай бұрын
Thanks. Waiting for more
@TechJourneyWithAnkit8 ай бұрын
Coming soon
@ashishgupta52095 ай бұрын
If the interviewer asked us to write trigger or Apex code where we should write like in developer console or in notepad
@TechJourneyWithAnkit5 ай бұрын
If you are good with syntax, go for Developer console or vs code else notepad will be fine for interviewer. Interviewer will be more interested in approach
@luciferbhoi8 ай бұрын
thank you so much, I was looking for this. Subscribed to the channel and looking forward to upcoming content. Also, when can we expect the next part
@TechJourneyWithAnkit8 ай бұрын
As soon as possible
@kasivisweswar5774 ай бұрын
API- Annotate it with @api This is used to make the property public. To pass data from parent component to child component we need to use @api in child component to make it public. So that data can pass from parent to child. Track- annotate it with @track Use to make the property private and it also tracks the changes in object and array. Wire- @wire Reactive wire service is used to read the salesforce data from Apex class. We cannot perform DML operation in wire.
@TechJourneyWithAnkit4 ай бұрын
Inherited sharing class of directly calls runs in Sharing mode, however other by default runs in system mode