일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 스크롤 이벤트
- Ionic modal
- ajax 사용 예시
- angular button
- 검색
- angular route
- prisma
- 앵귤러 모달
- modal
- TAILWIND
- egov spring ajax 사용 예시
- 스크롤 이벤트 감지
- 앵귤러 애니메이션
- 셀렉트박스 커스텀
- mysql if
- route
- ApexChart
- 아이오닉 스크롤 이벤트
- angular modal
- 옵저버블
- Oracle LISTAGG 사용 예시
- Router
- 호버
- formgroup
- summary
- flex-1
- scroll
- angular animation
- Angular Router
- 모달
- Today
- Total
목록Angular Router (4)
깜놀하는 해므찌로
ngOnInit() { const item = this.orderService .getItems() .find((_item) => _item.id === +this.activateRoute.snapshot.params['id']); if (item) { this.order = item; this.setPage(); } } 1. + 사용 시 문자열 -> 넘버타입으로 쉽게 변경 가능
1. app-template 2. layout-template import { ApplicationConfig, importProvidersFrom } from '@angular/core'; import { Route } from '@angular/router'; import { IonicModule } from '@ionic/angular'; import { LayoutPage } from './layout/layout.page'; import { BrowserModule } from '@angular/platform-browser'; import { provideRouter, withEnabledBlockingInitialNavigation, RouteReuseStrategy, } from '@ang..

import { Route } from '@angular/router'; import { LayoutPage } from './pages/layout/layout.page'; export const appRoutes: Route[] = [ { path: '', title: '테스트', component: LayoutPage, children: [ { path: '', title: '테스트 - 홈', data: { menu: false }, loadComponent: () => import('./pages/index/index.page').then((m) => m.IndexPage), }, { path: 'video', title: '테스트 - 영상', data: { menu: true, // true =..
import { Routes } from '@angular/router'; import { DashboardPage } from './pages/dashboard/dashboard.page'; import { BranchPage } from './pages/branch/branch.page'; import { EmployeePage } from './pages/employee/employee.page'; import { OrderPage } from './pages/order/order.page'; import { FaqPage } from './pages/faq/faq/faq.page'; import { OneOnonePage } from './pages/oneOnone/one-onone/one-ono..