
angular
spfLinux
这个作者很懒,什么都没留下…
展开
-
动态样式绑定 定时器
demo.component.ts import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'demo10', template:` 精彩 ` }) export class Demo10Component implements OnIni转载 2018-01-22 10:02:01 · 345 阅读 · 0 评论 -
angular 自定义指令
demo06.component.tsimport { Component, OnInit } from '@angular/core'; @Component({ selector: 'demo06', template: ` 这是自定义指令demo ` }) export class Demo06Component implements OnInit转载 2018-01-19 15:23:43 · 464 阅读 · 0 评论 -
angular 父子通信
xiaotou.component.tsimport { Component,OnInit } from '@angular/core'; import { DaTouComponent } from './datou.component'; @Component({ selector: 'xiaotou', template: ` 这是父组件转载 2018-01-19 17:13:33 · 361 阅读 · 0 评论 -
ng-container ng-for ng-if 数据类型
import {Component} from '@angular/core' @Component({ selector:'demo03', template:` 这是demo03 {{"index is "+myIndex+" value is转载 2018-01-18 18:57:54 · 2217 阅读 · 0 评论 -
第一个组件
demo01/demo01.component.tsimport {Component} from '@angular/core' @Component({ selector:'demo01', template:`this is our first component`, }) export class Demo01Component{ } app.component.ts转载 2018-01-18 16:48:33 · 300 阅读 · 0 评论 -
搭建angular开发环境
1、下载quickstart点击打开链接2、在quickstart目录下输入npm install3、npm start4、localhost:3000转载 2018-01-18 15:46:21 · 323 阅读 · 0 评论 -
angular 一般配置
app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import {AppRoutingModule} from './app.router'; import {FormsModule} from '@angu转载 2018-01-24 11:51:47 · 318 阅读 · 0 评论 -
angular 嵌套路由
mylogin.component.ts import { Component, OnInit } from '@angular/core'; @Component({ selector: 'mylogin', template: ` 登录页 查看邮件 ` }) export class MyLoginComponent impleme转载 2018-01-23 16:01:16 · 909 阅读 · 0 评论 -
angular 路由传参
cart.component.ts import { Component, OnInit } from '@angular/core'; import {Router} from '@angular/router' @Component({ selector: 'cart', template: ` 购物车页面 去结算 去结算转载 2018-01-23 14:51:34 · 419 阅读 · 0 评论 -
angular router
login.component.ts import { Component, OnInit } from '@angular/core'; @Component({ selector: 'login', template: ` 这是登录页面 ` }) export class LoginComponent implements OnInit {转载 2018-01-23 10:56:13 · 373 阅读 · 0 评论 -
angular 网络请求
demo13.component.ts import { Component, OnInit } from '@angular/core'; import {MyHttpService} from './myhttp.service'; @Component({ selector: 'demo13', template: ` http 按钮转载 2018-01-22 16:23:43 · 951 阅读 · 0 评论 -
angular services
demo.component.ts import { Component, OnInit } from '@angular/core'; import {UserService} from './user.service'; import {HeartService} from './heart.service'; @Component({ selector: 'demo12',转载 2018-01-22 15:31:53 · 326 阅读 · 0 评论 -
angular 动态绑定样式
demo09.component.tsimport { Component, OnInit } from '@angular/core'; @Component({ selector: 'demo09', template: ` 按钮 透明度是动态绑定过来的 `, styleUrls:['./test.css'] }) expor转载 2018-01-19 18:01:46 · 2430 阅读 · 0 评论