ANGULAR
ANGULAR COMO CREAR UN PROYECTO EN ANGULAR En la linea de comandos digitar: c:\> ng new Proyecto PARA CREAR UN COMPONENTE c:\> Ng g c nombreComponente VERSION DE ANGULAR C:\>ng version EJECUTAR EL SERVIDOR DE ANGULAR c:\>ng server CONVERTIR UN STRING EN UN OBJETO JSON EN ANGULAR Vamos al componente en el evento ngOnInit: Previamente debemos colocar debajo del export class la declaración de la variable contactos2; ngOnInit () { this .contactoServicio. getContactos () . subscribe (contactos => { console . log (contactos); this . contactos2 = JSON . parse (contactos); // Con esta línea puedo convertir un string a un objeto de array de JSON. }); } CONFIGURAR EL WAMP http://localhost:84/phpmyadmin/index.php Para entrar a MySQL el usuario es root y la clave vacio o no colocar nada. U...