其他分享
首页 > 其他分享> > angular6-service

angular6-service

作者:互联网

文章目录

1.为什么创建服务

组件不应直接获取或保存数据,并且它们不应故意呈现假数据。他们应该专注于呈现数据并委托对服务的数据访问。

2.创建服务

使用angular CLI命令行创建一个名叫hero的服务

ng generate service hero 
//简写 ng g s hero

该命令在src / app / hero.service.ts中生成HeroService类

src/app/hero.service.ts

import { Injectable } from '@angular/core';

@Injectable({
  providedIn: 'root'
})
export class HeroService {

  constructor() { }
}

标签:服务,service,创建,app,ng,angular6,hero
来源: https://blog.csdn.net/come0across/article/details/88791851