(持续更新)angular基础篇
angular的一些基础知识
2b勿扰
专注技术的研究
展开
-
(精华2020年6月7日更新)Angular基础篇 生命周期详解
import { Component, OnInit, Input, EventEmitter } from '@angular/core';// v-on:event = 'getData()'@Component({ selector: 'app-lifecycle', templateUrl: './lifecycle.component.html', styleUrls: ['./lifecycle.component.less'], inputs: ['titleV:tit原创 2020-06-07 18:01:15 · 16332 阅读 · 0 评论 -
(精华2020年6月7日更新)Angular基础篇 父组件到子组件传参
父组件html<div class="content"> <p>我是home页面</p> <app-header [stitle]='title' [category]='category' [homeWork] = 'homeWork' [homepage]='this' ></app-header></div>子组件tsimport { Component, O原创 2020-06-07 10:02:48 · 16391 阅读 · 0 评论 -
(精华2020年6月7日更新)Angular基础篇 子组件到父组件传参
html<div #myBox>我是一个dom节点</div><app-header #header></app-header><button type="button" (click)='getChildProp()'>获取子组件header的属性</button><button type="button" (click)='getChildMethod()'>获取子组件header的方法</button&g原创 2020-06-07 09:56:12 · 16427 阅读 · 0 评论 -
(精华2020年6月7日更新)Angular基础篇 DOM的操作
TS文件import { Component, OnInit } from '@angular/core';@Component({ selector: 'app-transition', templateUrl: './transition.component.html', styleUrls: ['./transition.component.less']})export class TransitionComponent implements OnInit { flag:原创 2020-06-07 07:52:06 · 16111 阅读 · 0 评论 -
(精华2020年6月6日更新)Angular基础篇 服务services的使用
首先输入如下命令ng g services 目录名生成import { Injectable } from '@angular/core';@Injectable({ providedIn: 'root'})//提供一个可以注册的服务export class StorageService { count: number = 1; constructor() { } //将数据写入localStorage set(key: any, value: any) {原创 2020-06-06 00:18:51 · 16146 阅读 · 0 评论 -
(精华2020年6月4日更新)Angular基础篇 管道,(click),(keydown),(keyup)的使用
<h1>---------------管道-------------</h1>{{today | date:'yyyy-MM-dd HH:mm ss'}}<h1>---------------事件(click)-----------------</h1><button (click)="run()">执行事件</button><button (click)="setData($event)">执行方法改变属性里面的原创 2020-06-04 23:58:30 · 16388 阅读 · 0 评论 -
(精华2020年6月4日更新)Angular基础篇 ngClass,ngStyle的使用
<h1>属性[ngClass]</h1><!-- <div class="red">ngclass</div> --><!-- <div [class] = "{'blue':true,'red':false}">ngclass演示</div> --><div [class]="{'blue':flag,'red':!flag}">ngclass演示</div><!--原创 2020-06-04 23:53:59 · 15733 阅读 · 0 评论 -
(精华2020年6月4日更新)Angular基础篇 *ngFor,*ngIf,ngSwitch的使用
<h1>--------------循环 ngFor---------------</h1><ul> <li *ngFor="let item of list;let key=index">{{key}} -- {{item}}</li></ul><ul> <li *ngFor="let item of list">{{key}} -- {{item}}</li></ul&g原创 2020-06-04 23:50:58 · 15905 阅读 · 0 评论 -
(精华2020年6月4日更新)Angular基础篇 属性绑定[]的使用
ts文件import { Component, OnInit } from '@angular/core';@Component({ selector: 'app-news', templateUrl: './news.component.html', styleUrls: ['./news.component.less']})export class NewsComponent implements OnInit { //定义普通数据 title:string='我是新闻组件原创 2020-06-04 23:41:22 · 14648 阅读 · 0 评论