Introduction to Angular. Angular is a TypeScript-based open-source front-end web application platform led by the Angular Team at Google and by a community of individuals and corporations.
Check out Dylan Israel’s YouTube channel: https://www.youtube.com/channel/UC5Wi_NYysX-LfcqT3Hq9Faw
—
Learn to code for free and get a developer job: https://www.freecodecamp.com
Read hundreds of articles on programming: https://medium.freecodecamp.com
And subscribe for new videos on technology every day: https://youtube.com/subscription_center?add_user=freecodecamp
source
LOL, nobody hires for that
why not 6?? why 5 now??
I hope you will answer this question: The data doesn't load in the select using this code
FOR crypto-form.component.html
<select name="" id="cryptos" class="form-control">
<option value=""></option>
<option value="" *ngFor="let crypto of top100Cryptos">{{ crypto.name }}</option>
</select>.
FOR crypto-form.component.ts
@Component({
selector: 'app-cryto-form',
templateUrl: './cryto-form.component.html',
styleUrls: ['./cryto-form.component.css']
})
export class CrytoFormComponent implements OnInit {
top100cryptos;
constructor(public cryptoservice: CryptoService) { }
ngOnInit() {
this.cryptoservice.getCryptos().subscribe((data) => {
this.top100cryptos = data;
// console.log(data);
});
}
}
FOR crypto-service.service.ts
export class CryptoService {
constructor(public http: HttpClient) { }
getCryptos(){
return this.http.get('https://api.coinmarketcap.com/v1/ticker/'😉;
}
}
I can log it in the console, but the data doesn't load in the select element. Would you tell me how to fix?
This wasn't bad but just my thoughts on how to make it better. It would have been better had you done a high level overview of everything @02:04 before jumping into long portions of tedious angular coding where the viewer doesn't yet have the knowledge to fully understand what you're coding and why, what the angular file structure is and why, etc. Also clearly delineate to the viewer when you're moving on from one topic to the next, it felt very meandering and I was like oh we're on services now? Are we done with components? Jumping back and forth between major topics a lot was confusing.
wow u r going soo fast :/
I appreciate the efforts but literally have no idea what's happening here….you're going 100 mph
Good for some basic concepts
any one see the irony of his desktop background
the API is not working anymore! ):
Plz send ppt and pdf about angular 5