摘要: import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { Product1Component } from './product1/pr... 阅读全文
posted @ 2018-04-22 12:25 chester·chen 阅读(766) 评论(0) 推荐(0) 编辑
摘要: import { Injectable } from '@angular/core'; @Injectable() export class LoggerServiceService { constructor() { } log(message: string) { console.log(message); } } import { Injectable } ... 阅读全文
posted @ 2018-04-22 12:08 chester·chen 阅读(187) 评论(0) 推荐(0) 编辑
摘要: import { Injectable } from '@angular/core'; import { ProductServiceService, Product } from './product-service.service'; @Injectable() export class AnotherProductServiceService implements ProductServ... 阅读全文
posted @ 2018-04-22 11:50 chester·chen 阅读(120) 评论(0) 推荐(0) 编辑
摘要: import { Injectable } from '@angular/core'; @Injectable() export class ProductServiceService { constructor() { } getProduct(): Product { return new Product(1, "iPhone7"); } } export cl... 阅读全文
posted @ 2018-04-22 11:46 chester·chen 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-22 11:23 chester·chen 阅读(69) 评论(0) 推荐(0) 编辑