Djangoroidの奮闘記

python,django,angularJS1~三十路過ぎたプログラマーの奮闘記

2017-04-25から1日間の記事一覧

Angular4入門_Vol.4

参考サイト https://www.codingforentrepreneurs.com/projects/try-angular-v4/ Dynamic Routing of Components video-detail.component.tsにコードを追記する。 import { Component, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angu…

Angular4入門_Vol.3

参考サイト https://www.codingforentrepreneurs.com/projects/try-angular-v4/ Mapping Urls with Router Moudle routermoduleを使って、urls のmappingをする。 まず、src/app/app.routing.tsファイルを作成する。 import { NgModule } from '@angular/cor…

Angular4入門_Vol.2

参考サイト https://www.codingforentrepreneurs.com/projects/try-angular-v4/ 6 - ngFor & ngIf ngForのテストをするために、video-list.component.tsを修正する。 import { Component, OnInit } from '@angular/core'; @Component({ selector: 'video-lis…