Angular Tutorial - 17 - Services

preview_player
Показать описание

📱 Follow Codevolution

Angular | Angular Tutorial for Beginners | Services in Angular
Рекомендации по теме
Комментарии
Автор

I'm impressed on how things flow from one video to the next. Very well done!

codebox
Автор

your whole angular series, its just soo squeaky clean explanation .very helpful for beginner and interview purpose.

chandanadas
Автор

Thanks is not enough to say! You are simply superb sir and so far you might had saved many lives, like mine!!! Thank you!!!!Thanks a lot..!!!

misy_code
Автор

Really helpful, short course but much effective. Thanks Codevolution !

madhukarh
Автор

Thank you very much for your greate tutorial!;
My question: for accessing the array employees in class of employee-list.component.ts in employee-detail.component.ts, why don't we use extends keyword? (EmployeeDetailComponent extends EmployeeListComponent)?

catan.sales
Автор

best tutorials for angular thank you vishwas for this wonderful tutorial

anandtiwari
Автор

awesome tutorial..thanks keep doing your good work.

VinothKumar
Автор

What a great teacher.thankyou so much for this

sosammathomas
Автор

Thank you my Indian teacher, keep up the good work!

dgen
Автор

i'm so lucky to find a tutoriel like this, thank you Professor.

medbolm
Автор

U r such an amazing tutor sir🔥💯
Hatsoff to u sir!!🙂❤️

kaviyap
Автор

If you use *ngFor for <ul> tag, code should be :

<ul>
<li>content</li>
</ul>
<ul>
<li>content2</li>
</ul>
...
...


This is wrong usage. True usage, you should use *ngFor for <li> tag, and code should be:


<ul>
<li>content</li>
<li>content</li>
<li>content</li>
...
</ul>

nestieyt
Автор

great video...very easy to understand, Thanks u sir.

Superboy_Akshu
Автор

Just a question. Why don't we make use of the parent-child component interaction method for this specific use case? For example, we can have a EmployeeComponent which will hold the data and add two different child components (EmployeeDetail, EmployeeList) and then pass the data. I believe that is how React does it by sending the props.

soumyajitdey
Автор

thank you so so much !!! its very very helpful !!! thanks alot Sir!!!

gomathirr
Автор

Thanks you helped ne a lot 👏👏finally i understood the difference service and component❤️❤️❤️

walterwhite
Автор

Why test component decorator had .app-test as selector but for employee-list component when the selector is .app-employee-list angular is not working but when changed it to employee-list it is working why is that?

Learn-Once
Автор

I want that employees name starts with s only what should I do for this

Megodavariammai
Автор

Your tutorial is great to kickstart with and angular.
*ngFor should be for <li> element for for <ul>. I thought so..

viragshah
Автор

are there latest version tutorials available

vaibhshinde