
angular
qq_35673617
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
angular4父子组件间传值
父组件向子组件传值 @Input 父组件: father.template.html <h1>父组件</h1> <cmt-child [data]='data'></cmt-child> father.component.ts import { Component, OnInit } from '@angular/core'; @...转载 2019-01-02 18:31:53 · 465 阅读 · 0 评论 -
angular4 使用 ng build --prod 编译报内存溢出
如下: <--- Last few GCs ---> [13724:0000020D39C660D0] 231298 ms: Mark-sweep 1356.3 (1433.6) -> 1356.3 (1433.6) MB, 1194.3 / 0.0 ms allocation failure GC in old space requested [13724:000002...原创 2019-01-07 11:34:26 · 6204 阅读 · 1 评论 -
Angular4中[ngClass]、[ngStyle]的用法
1、ngStyle 基本用法 <div [ngStyle]="{'background-color':'green'}"></<div> 添加判断 <div [ngStyle]="{'background-color':username === 'zxc' ? 'green' : 'red' }"></<div> 2、n转载 2019-01-30 13:25:45 · 4361 阅读 · 0 评论 -
angular4中定时执行某函数
updateResCzbt(){ this.elasticSearchService.updateResCzbt(); var that = this; that.interval = setInterval(function(){ that.getUpdateStatus() },3000); } ...原创 2019-02-19 15:12:03 · 2159 阅读 · 0 评论