摘要:
nz-button的点击效果 我们可以添加给自己的自定义nz-wave指令 我觉得源码不错, 扣过来 nz-wave-renderer.ts /** * Use of this source code is governed by an MIT-style license that can be * 阅读全文
摘要:
在Angular 中转译 转移: 将代码从一种高级语言转换为另一种高级语言。 编译:将代码从高级语言转换为机器级语言 每个 Angular 项目都有一个名为tsconfig.json的文件,其中包含将 .js 文件转换为 .ts 文件的设置。 tsconfig.json官网地址 JIT和AOT编译的 阅读全文
摘要:
声明 declarations: [AppComponent] 组件、管道、指令 引入模块 imports: [BrowserModule, AppRoutingModule] 其他模块 服务 providers: [UserService] 此模块将生成的根组件 例子: bootstrap: [A 阅读全文
摘要:
粘贴性属性 .sticky { position: sticky; left: 0; } 至少应指定top、right、bottom 最近滚动祖先 如果要两个属性都靠左 .company { position: sticky; left: 0px; } .manager { position: st 阅读全文
摘要:
FormControl maxLength(): ValidatorFn { return (control: AbstractControl): ValidationErrors | null => { // 给个报错信息 if (control.value '333') { return {se 阅读全文
摘要:
有条件给对象添加属性 const bool = true; const obj1 = { id: 1, name: 'JOho me', ...(bool && {sex: 12}) }; reduce 和find的巧妙用法 统计total并且删除对象数组中重复项 const data = [ {t 阅读全文
摘要:
withLatestFrom 将源 Observable 与其他 Observable 组合以创建一个 Observable,其值从每个 Observable 的最新值计算,仅当源发出时。 拿到最新的值进行合并 const sportsNews$ = interval(5000).pipe( map 阅读全文
摘要:
我们在写复杂结构的表单的时候, 想的是怎么可以更好的偷懒且代码结构简化易于维护 表单传给子代执行 父 <app-time-module-four [formGroup]="validateForm"></app-time-module-four> validateForm!: FormGroup; 阅读全文
摘要:
skip rxjs 忽略前两次执行 skip(2) 星号背后的意义* <h1 *myNgIf> Angular rocks </h1> 等价 <ng-template myNgIf> <h1> Angular rocks </h1> </ng-template> 写个小案例 export class 阅读全文