随笔分类 - Angular
angular8;typescript;
摘要:1. 怎么在多个component中使用 自定义管道 先建好管道 然后再随便哪一个,最好的等级高一点的module中去定义它,我这里直接两个管道一期定义了。 最重要的是在 2. 让组件component在不同的moudle中可以引用, 如上图, import进来就可以了
阅读全文
摘要:Angular *ngIf length 在Angular中如何判断*ngIf Arrary的长度? 具体代码如下: result = []; <div class="kt-section__content pay_result" *ngIf="result.length"> </div> 但是报如
阅读全文
摘要:<div id="homework"> <form (ngSubmit)="doSubmit()" enctype="multipart/form-data"> <mat-label>作业标题</mat-label> <mat-icon matSuffix class="secondary-text">account_circle</mat-icon> <input name="title" re
阅读全文
摘要:import { Component,Input} from '@angular/core';@Component({ selector: 'app-lifecycle', templateUrl: './lifecycle.component.html', styleUrls: ['./lifec
阅读全文
摘要:父组件:news组件 子组件:header组件
阅读全文
摘要:/*ViewChild获取dom节点 1、模板中给dom起一个名字 <div #myBox> 我是一个dom节点 </div> 2、在业务逻辑里面引入ViewChild import { Component, OnInit,ViewChild} from '@angular/core'; 3、 写在
阅读全文
摘要:export class TodolistComponent implements OnInit { public keyword:string; public todolist:any[]=[]; constructor() { } ngOnInit() {} doAdd(e){ if(e.key
阅读全文
摘要:感觉写的不错,所以讲链接保存下来 https://www.jianshu.com/p/f0f81a63cbcb
阅读全文
摘要:this.router.navigate(['/teacher/course/detail/' + id]);
阅读全文
摘要:第一课: angular 创建项目命令: ng new 项目名称 创建组件: ng g 可查看所有创建的对象 ,ng g component components/home 创建组件,后面跟的是组件的路径,最后生成的目录是app/componetns/home/xxxx各种文件 第四课: [ngCl
阅读全文
摘要:@Component 装饰器告诉Angular , AppComponent 类是一个组件,装饰器的属性用于配置该组件的应用方式。 selectot 属性告诉Angular如何在HTML文档中应用该组件,template属性定义组件将显示的内容。组件既可以定义内联模板,也可以使用外部HTML文件,这
阅读全文
摘要:背景:使用angular8安装的 Fuse-v8.0.0-demo 后台的框架 锚点: id='nearby' 流程:无论是点击触发方法也好,还是直接调用方法也好,这里只写 引入: 属性: 方法: // 在页面渲染完成时,开始执行这个方法
阅读全文
摘要:<div *ngFor="let item of object | keyvalue"> {{item.key}}:{{item.value}} </div>
阅读全文
摘要:https://blog.csdn.net/fsxxzq521/article/details/85715213
阅读全文