Тёмный

Frequently Asked LWC Interview Questions & Answers  

Tech Journey With Ankit
Подписаться 8 тыс.
Просмотров 18 тыс.
50% 1

Опубликовано:

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 38   
@saisagar921
@saisagar921 3 месяца назад
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
@TechJourneyWithAnkit
@TechJourneyWithAnkit 3 месяца назад
Glad you found this helpful
@PoojaSinghal-cl6wj
@PoojaSinghal-cl6wj 4 месяца назад
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
@TechJourneyWithAnkit
@TechJourneyWithAnkit 4 месяца назад
Correct
@Himanshukumar-pw4ys
@Himanshukumar-pw4ys 4 месяца назад
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.
@kumarvenkat739
@kumarvenkat739 3 месяца назад
Thank you so much Sir, I cannot finish a video without saying a Big THANK YOU to you
@TechJourneyWithAnkit
@TechJourneyWithAnkit 3 месяца назад
Glad you liked it
@TheBeastBananas
@TheBeastBananas 4 месяца назад
Thanks. Waiting for more
@TechJourneyWithAnkit
@TechJourneyWithAnkit 4 месяца назад
Coming soon
@anilkumarsahu8546
@anilkumarsahu8546 2 месяца назад
excellent!!!
@TechJourneyWithAnkit
@TechJourneyWithAnkit 2 месяца назад
Thank you! Cheers!
@ashishgupta5209
@ashishgupta5209 Месяц назад
If the interviewer asked us to write trigger or Apex code where we should write like in developer console or in notepad
@TechJourneyWithAnkit
@TechJourneyWithAnkit Месяц назад
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
@haribabuk5162
@haribabuk5162 4 месяца назад
@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
@TechJourneyWithAnkit
@TechJourneyWithAnkit 3 месяца назад
Correct
@shrutiggundewar
@shrutiggundewar 4 месяца назад
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.
@TechJourneyWithAnkit
@TechJourneyWithAnkit 4 месяца назад
Will consider this in upcoming videos
@ashwinkubde5232
@ashwinkubde5232 4 месяца назад
==> 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.
@TechJourneyWithAnkit
@TechJourneyWithAnkit 4 месяца назад
Correct
@kasivisweswar577
@kasivisweswar577 12 дней назад
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.
@TechJourneyWithAnkit
@TechJourneyWithAnkit 10 дней назад
Inherited sharing class of directly calls runs in Sharing mode, however other by default runs in system mode
@naj7213
@naj7213 4 дня назад
can we call wire method using LWC life cycle hooks? if yes, in which LWC life cycle hook?
@TechJourneyWithAnkit
@TechJourneyWithAnkit 2 дня назад
Wire method is a seperate process. If you have to invoke it in life cycle change the parameter of wire in connected callback
@sunilbihani7581
@sunilbihani7581 4 месяца назад
Thank you so much @Ankit Sir. Its great.
@TechJourneyWithAnkit
@TechJourneyWithAnkit 4 месяца назад
Glad you liked it
@naveenadapa1325
@naveenadapa1325 4 месяца назад
Please Upload LWC Interview Questions
@kundlikyewale1464
@kundlikyewale1464 3 месяца назад
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
@TechJourneyWithAnkit
@TechJourneyWithAnkit 3 месяца назад
Correct
@luciferbhoi
@luciferbhoi 4 месяца назад
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
@TechJourneyWithAnkit
@TechJourneyWithAnkit 4 месяца назад
As soon as possible
@raghavendrasharma2466
@raghavendrasharma2466 4 месяца назад
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.
@luciferbhoi
@luciferbhoi 4 месяца назад
What would be the answer
@TechJourneyWithAnkit
@TechJourneyWithAnkit 4 месяца назад
I am not sure. There is something wrong in the question
@NaveenKumar-sd6mx
@NaveenKumar-sd6mx 4 месяца назад
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.
@nv1242
@nv1242 2 месяца назад
Like and subscribe done.
@TechJourneyWithAnkit
@TechJourneyWithAnkit 2 месяца назад
Thanks
@haribabuk5162
@haribabuk5162 4 месяца назад
Thanks for giving these type of knowledge
@TechJourneyWithAnkit
@TechJourneyWithAnkit 4 месяца назад
Glad you liked it
Далее
Salesforce Developer 4+ Years of Experience
38:13
Просмотров 6 тыс.