miércoles, 2 de junio de 2021

DESPLIEGUE PROYECTO ANGULAR

 ng build --prod --output-hashing none


  ng build --prod --output-hashing all

lunes, 15 de marzo de 2021

ROUTES

https://experienceleague.adobe.com/docs/experience-manager-learn/spa-angular-tutorial/navigation-routing.html%3Flang%3Dde#update-the-header-component final!!!


 https://www.aanchalgarg.com/2019/09/routes-with-multiple-and-query.html


https://stackoverflow.com/questions/36320821/passing-multiple-route-params-in-angular2



SELECCCIONADA:

I want to fetch multiples ids which I am passing while routing in Angular using route.params. This is the route.ts

{path:'section/:id/:id', component: SubsectionsComponent}

And this is how I am routing from a component.ts

onSectionClick(id1, id2){
    this.router.navigate(['/path/',id1,id2], {relativeTo:this.route})
  }

https://stackoverflow.com/questions/58077240/how-to-get-multiple-ids-from-route-param-in-angular-6

sábado, 13 de marzo de 2021

how-to-find-element-in-array

 https://stackoverflow.com/questions/37969984/angular-2-typescript-how-to-find-element-in-array

jueves, 4 de marzo de 2021

 https://www.codeproject.com/Questions/5276179/Bootstrap-dropdown-menu-not-visible 


boostrap order

index.html


<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Lcbapp</title>
  <base href="/">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
  <link rel="stylesheet" href="./assets/libs/bootstrap-5.0.0-beta2-dist/css/bootstrap.min.css">

</head>
<body>
  <app-root></app-root>

  <script src="assets/libs/bootstrap-5.0.0-beta2-dist/js/bootstrap.min.js"></script>
  <script src="assets/libs/jquery/jquery-3.6.0.min.js"></script>
  <script src="assets/libs/popper/popper.min.js"></script>
 


</body>
</html>