xinxin?

2020年8月1日

Angular:组件之间的通信@Input、@Output和ViewChild

摘要: ①父组件给子组件传值 1、父组件: ts: export class HomeComponent implements OnInit { public hxTitle = '我是首页的头部'; constructor() { } ngOnInit(): void { } run(): void { 阅读全文

posted @ 2020-08-01 17:20 xinxin? 阅读(259) 评论(0) 推荐(0) 编辑

Angular:管道和自定义管道

摘要: ①管道的使用,更多管道在angular官网上有 <p>全部转为大写:{{'hahahah' | uppercase}}</p> <p>保留两位小数:{{1.45555 | number:'1.1-2'}}</p> ②自定义管道 1、使用ng g pipe创建一个管道类文件 2、对pipes/pow. 阅读全文

posted @ 2020-08-01 16:37 xinxin? 阅读(226) 评论(0) 推荐(0) 编辑

Angular:自定义属性指令

摘要: ①在命令行窗口下用 CLI 命令ng g directive创建指令类文件 ②将directives/light.directive.ts文件改造一番 import { Directive, ElementRef, HostListener, Input } from '@angular/core' 阅读全文

posted @ 2020-08-01 16:05 xinxin? 阅读(266) 评论(0) 推荐(0) 编辑

导航