博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
angularJs2随记
阅读量:6607 次
发布时间:2019-06-24

本文共 1373 字,大约阅读时间需要 4 分钟。

路由:
调用路由模块
import { NgModule }             from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
 
设置子路由
{ path: 'home',  component: HomeComponent ,children:childRoutes},
 
const childRoutes : Routes=[
  { path: '', redirectTo: 'index', pathMatch: 'full' },
  { path: 'index',  component: IndexComponent }
]
 
在需要跳路由的标签加上属性 routerLink="home"
在需要加载路由的界面添加标签 <router-outlet></router-outlet>
路由跳转
(这个跳转的方法,资源不会调用)
this.router.navigateByUrl("/home");
 
激活(路由链接为活动状态)时绑定一个css样式
routerLinkActive="active"
 
模块:
在ts中模块的基本结构如下:
import { Component } from '@angular/core';
@Component({
  selector: 'app-home',
  templateUrl: './home.component.html'
})
export class HomeComponent {
}
 
import { Component, OnInit } from '@angular/core';
@Component({
  selector: 'my-home',
  templateUrl: './home.component.html'
})
export class HomeComponent implements OnInit{
  ngOnInit(): void {
  }
}
 
路径:
获取路径(/home/index)
path:Location;
constructor(location: Location) {
  this.path = location;
}
 
调用接口
return this.http.get('http://localhost:81/angular.php')
 .map(response => response.json()).subscribe(data=>{
 this.res = data.res;
})
 
显示:
相当于遍历数组
 *ngFor="let lang of langs"
 
条件判断
 *ngIf="langs.length>3"
 
添加点击事件
 (click)="onClickMe()"
 
通过box模块来绑定当前元素,然后获取value值
 #box (keyup)="onKey2(box.value)"
 
绑定回车事件
 #box (keyup.enter)="value3=box.value"
 
绑定失焦事件
(blur)="value4=box.value"
 

转载于:https://www.cnblogs.com/gyy-mt/p/6946427.html

你可能感兴趣的文章
管理工具
查看>>
未找到工作先遇黑客 八大人事局网站被挂马
查看>>
VB100十二月成绩公布
查看>>
ifanr访谈:GuruDigger — Web工程师排排坐
查看>>
Windows Phone 7新开发工具发布
查看>>
一起谈.NET技术,利用Response.Flush和iframe实现”服务器推”技术
查看>>
一起谈.NET技术,七种武器武装.NET(常用开发工具介绍)
查看>>
一起谈.NET技术,解决编程中序列化问题
查看>>
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
查看>>
旅行的牧歌
查看>>
volatile与restrict
查看>>
nodejs基础 -- express框架
查看>>
500. Keyboard Row
查看>>
260. Single Number III
查看>>
第8周课下作业2(补)
查看>>
jmeter自动化接口
查看>>
Gym 100952D&&2015 HIAST Collegiate Programming Contest D. Time to go back【杨辉三角预处理,组合数,dp】...
查看>>
iOS开发笔记--Masonry介绍与使用实践:快速上手Autolayout
查看>>
PHP while与do...while语句
查看>>
Robot FrameWork基础学习(三)
查看>>