Angular Tutorial for Beginners

Angular Tutorial for Beginners

Academind

8 лет назад

451,491 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@abelbigk
@abelbigk - 12.07.2024 16:51

some make sections by adding minutes

Ответить
@Music-cq5in
@Music-cq5in - 09.03.2023 12:37

With the latest version of angular I'm facing an issue on ngModel, it is not compiling and throwing errors. Cant debug where I am wrong. Any help would be highly appreciated

Ответить
@mustaneerhaider515
@mustaneerhaider515 - 12.08.2022 16:46

I wanna learn Angular from you already learned React from your udemy course. But the Angular course is bit outdated and i saw in the course student reviews section which convinced me to not buy the course right now maybe in the future when you re-record the course.
Also there is one huge course project, there can be 3 to 4 course projects which teaches the concepts just like you did with React course and your React Native course, there you show many demo apps.

Ответить
@dchen73
@dchen73 - 15.07.2022 01:43

Important!
In order for 2 way binding to work, you need to import FormsModule into app.module.ts. Otherwise the webpage will be blank.
In app.module.ts, add to the beginning:

import { FormsModule } from '@angular/forms';


and add inside the brackets within @NgModule imports: FormsModule

Ответить
@mahmoudkhalaf8963
@mahmoudkhalaf8963 - 04.04.2022 23:47

why cc to english not supported?

Ответить
@tejpalsingh77
@tejpalsingh77 - 12.03.2022 17:06

An awesome introductory video for Angular. Loved It!! I am gonna get the complete course from UDEMY 💫

Ответить
@86tiagonunes
@86tiagonunes - 30.01.2022 04:07

This course is amazing, really worth it

Ответить
@fabianschober
@fabianschober - 28.11.2021 23:35

Hab mir gerade den Angular 2 Kurs auf Udemy gekauft, und fiel fast vom Stuhl als ich den Dialekt gehört hab. Wenn mi ned ois teischt, a Bayer??

Ответить
@sonicmouse3083
@sonicmouse3083 - 16.11.2021 18:49

I've watched a few Angular tutorials from other people, and honestly, it's like watching paint dry. This guy is engaging, smart and explains things to where I feel like i'm actually learning... and having fun. He was put on this earth to teach. Great job. Bought the entire course.

Ответить
@madhavbathini6164
@madhavbathini6164 - 29.07.2021 15:50

Do you have a discord link?

Ответить
@mdzakariamasud8326
@mdzakariamasud8326 - 29.05.2021 14:18

Please re record angular full course to angular 12

Ответить
@mukta4689
@mukta4689 - 19.05.2021 11:08

hmm all of this code only works when written in app.component, none of them is working on server/servers files created therefore mine isn't giving output like your code despite writing it that way.

Ответить
@soheil424
@soheil424 - 05.05.2021 09:29

Damn you and all other programmers and programming languages. Fucking Nerds.

Ответить
@korhad
@korhad - 14.04.2021 12:57

Maximilian saving my software dev career once again. Thanks a bunch for high quality and straight-to-the-point tutorials mate. I have just bought your full course on Udemy. Cheers!

Ответить
@ashwinchaudhary5730
@ashwinchaudhary5730 - 22.02.2021 14:15

Sir here which extension used that show a list of possible function when we type a character?

Ответить
@MZ-uv3sr
@MZ-uv3sr - 18.02.2021 08:16

I bought two of your courses on Udemy. is the one linked to above the same as one of those?

Ответить
@sebastienpannittipilon8434
@sebastienpannittipilon8434 - 20.01.2021 17:46

Thank you so much !!!! I wanted to take a leap jump from AngularJS to Angular and you've made it so easy to understand! I can't thank you enough

Ответить
@shaurabhsaha2082
@shaurabhsaha2082 - 17.01.2021 00:56

what is the prerequisite for learning angular? and can anyone guide me what is the pattern i should follow to learn mern stack

Ответить
@maheshwartripathi633
@maheshwartripathi633 - 15.12.2020 12:34

Can you please share your thoughts that how we can run angular along with php using apache

Ответить
@codewithjsMaster
@codewithjsMaster - 04.09.2020 09:40

Can you create tutorial on how to send mail when someone subscribe

Ответить
@remixowlz
@remixowlz - 30.08.2020 15:19

really good!

Ответить
@philmups8207
@philmups8207 - 21.08.2020 01:01

Can l be gifted with this course on udemy

Ответить
@NuevaHD
@NuevaHD - 26.07.2020 19:56

thank you so much for your effort , that's the best angular course for beginners ever watched

Ответить
@VipulPatil9399
@VipulPatil9399 - 03.07.2020 13:18

Sir, can you please make a separate course on angular ngx-permissions module

Ответить
@25-akshay12
@25-akshay12 - 04.06.2020 06:58

Awesome video however the only method that got me earnings is... look up in Google this with-out gaps E a s y L a p t o p L i f e .c o m

Ответить
@abhisheknair_music
@abhisheknair_music - 27.05.2020 13:12

Is this course relevant in 2020?

Ответить
@remixowlz
@remixowlz - 12.04.2020 06:26

To fix the ngModel issue , you need to import FormsModule:


first in app.module.ts

**

import { BrowserModule } from '@angular/platform-browser';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
FormsModule,
ReactiveFormsModule ,
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }

==========================

** second in app.component.spec.ts

import { TestBed, async } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { AppComponent } from './app.component';
import { FormsModule } from '@angular/forms';
describe('AppComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
RouterTestingModule,
FormsModule
],
declarations: [
AppComponent
],
}).compileComponents();
}));

Ответить
@MrPKTamil
@MrPKTamil - 10.12.2019 04:56

Best Angular Admin theme at lowest price ​@t​

Ответить
@kostas71374
@kostas71374 - 30.11.2019 12:20

if ngModel doesn't work and the input example doesnt work:


Step 1: Importing FormsModule

import {FormsModule} from '@angular/forms' in app.component.ts


Step 2: Add it to imports array of your AppModule as


imports :[ ... , FormsModule ]


Step 3: Change ng-model as ngModel with banana boxes as

<input id="name" type="text" [(ngModel)]="name" />


Found on stack overflow

Ответить
@mohdhaikalrozhan6237
@mohdhaikalrozhan6237 - 17.10.2019 16:48

Is this still relevant?

Ответить
@amarnarayanpasuperti9360
@amarnarayanpasuperti9360 - 14.10.2019 17:33

page doesnt render with your code.pls help

Ответить
@amarnarayanpasuperti9360
@amarnarayanpasuperti9360 - 14.10.2019 17:33

ng model not working

Ответить
@tendaikaruma738
@tendaikaruma738 - 12.08.2019 11:23

Hie guys can i use this tutorial for angular 8 , im a lil bit worried

Ответить
@gerald902
@gerald902 - 26.07.2019 07:05

讲了半天还是听不懂在讲什么。。

Ответить
@elhadjindiongue1736
@elhadjindiongue1736 - 12.07.2019 00:30

Hi I'm a beginner and I have a little problem when I add "ngModel" on my input as on the video in the 16th minute. The page becomes white and nothing is displayed. As a result, the Binding does not work. Do you have a solution to this problem?

Ответить
@UncleBooshi
@UncleBooshi - 08.06.2019 04:07

Video needs an annotation around 16.30 --> the code in app.module.ts needs to be changed to the following for the binding to work:


import { BrowserModule } from '@angular/platform-browser';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
FormsModule,
ReactiveFormsModule ,
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }

Ответить
@Tanzeel431
@Tanzeel431 - 07.06.2019 08:10

Bought his course on Angular 8 and ReactJS at Udemy. Worth my money. Thanks. Love from India.

Ответить
@TechBoxNorth
@TechBoxNorth - 20.05.2019 21:10

not even 20 minutes in and this tutorial is broken! sigh Impossible to learn anything if the learning material doesn't work, was considering buying the complete udemy course but now that seems like a bad idea.

Ответить
@briankgarland
@briankgarland - 07.04.2019 20:33

Excellent!

Ответить
@manutdfan5901
@manutdfan5901 - 28.03.2019 18:26

Need experts opinion!!
UI versioning is something that I want to introduce. Considering we have a component designed for V1. Later modified (change could be minor or major one) and we release in updated new version V2 of my component.
Now, my app is at Version V2, but with this V2 deployed, dynamically I need to support V1 (user can switch between V1 and V2).
Version deployed is V2 but need to support V1 as well. But between V1 and V2 my components were modified. Is there a convenient way to design the components to support different versions of UI?

Ответить
@divyajyotisingh01
@divyajyotisingh01 - 19.02.2019 09:21

getting error, while using ng serve in terminal why

Ответить
@boubeniamohamed236
@boubeniamohamed236 - 29.01.2019 16:30

Really high quality course.
Congratulations Maximilian !

Ответить
@mshubhamtyagi9166
@mshubhamtyagi9166 - 05.01.2019 14:06

How to send an image along with other form control from angular 2 to a node Web API?

Ответить
@MattH479
@MattH479 - 04.01.2019 01:48

Informative and engaging. Thanks for another great instructional video, Max!

Ответить
@thomasthuyaaung
@thomasthuyaaung - 06.12.2018 17:57

If you go to Udemy now and buy this course.
WIthout the promocode, it's cheaper.
With the promo code it's more expensive.

Ответить