angular
wang_liuyong
沧海一粟
展开
-
angular创建本地库
标题Angular7 Library库的使用 创建 Angular 工作区 使用 –createApplication 这个 --createApplication 选项与 ng new 结合一起使用,设置它为 false 时,它会告诉 ng new 命令不要在工作区内创建初始化的 Angular 应用。 为了创建一个不包含初始化应用的 Angular 工作区,我们使用下面方法: ng new m...原创 2019-11-25 09:57:53 · 1247 阅读 · 0 评论 -
angular router常用配置
Angular’s Route const routes: Routes = [ { // 来源管理 一览 path: 'sourceList', component: SourceListComponent }, { // 推广二维码 一览 path: 'qrcodeList', component: QrcodeListCompo...原创 2019-10-29 22:07:36 · 971 阅读 · 0 评论 -
angular学习笔记
1.相关指令 *ngFor="" *ngIf="" 插值表达式 {{}} 属性绑定 [] 事件绑定 () ngOnInit() { this.route.paramMap.subscribe(params => { this.product = products[+params.get('productId')]; }); ` @NgModule({ imports: [ ...原创 2019-06-27 16:36:29 · 388 阅读 · 0 评论 -
angular 表单常用验证
html监听验证 <nz-form-control> <nz-form-label class="label" nzFor="integral">积分值</nz-form-label> <input name="integral" nz-input placeholder="" formControlName="p...原创 2019-08-12 09:55:07 · 2394 阅读 · 0 评论 -
angular7.0使用参考手册
angular 各功能应用demo 启动项目 进入各demo项目下执行: cnpm i ng serve --open 常用指令 *ngfor *ngIf 插值表达式 {{}} 属性绑定 [] 事件绑定 () //数据双向绑定 [(ngModel)]="hero.name" app.module各模块含义 组件 路由 1.路由配置 app.rou...原创 2019-09-18 10:58:34 · 765 阅读 · 0 评论 -
IOS微信浏览器键盘挤压页面不回弹解决方法
import { Directive, ElementRef } from '@angular/core'; @Directive({ selector: '[appResetPage]' }) export class ResetPageDirective { constructor(el: ElementRef) { // 解决键盘挤压页面后不复原的问题,input失去...原创 2019-10-09 10:42:50 · 625 阅读 · 0 评论