博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Angular结构简单介绍
阅读量:5043 次
发布时间:2019-06-12

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

在当前项目目录下,使用Angular-CLI生成一个组件:heroes

ng generate component heroes

 

 

 

 

 主界面(也就是一个主模块+多个单模块,例如我们创建的heroes(单模块也有自己的html\css\ts文件,可以在主页面导入它的视图)):

//类似CSS
app.component.css
//类似HTML
app.component.html
//TypeScript
app.component.ts

 

 

//app.component.html

Welcome to {
{ head }}!

  

//app.component.css.inCenter {    text-align: center;    color: #f00;}

  

//app.component.tsimport { Component } from '@angular/core';@Component({  // selector:选择器  selector: 'app-root',  // 模板地址  templateUrl: './app.component.html',  // 样式地址(数组)  styleUrls: ['./app.component.css']})export class AppComponent {  title = 'fcuk';  head =  '66s';}

  

//app.module.ts/*Angular需要知道应用程序的各个部分如何组合在一起以及应用程序需要哪些其他文件和库。这些信息被称为元数据一些元数据位于您添加到组件类的装饰器中。其他关键元数据在装饰器中。@Component@NgModule最重要的装饰器注释顶级AppModule类。@NgModuleAngular CLI AppModule在src/app/app.module.ts创建项目时生成了一个类。这是你选择进入的地方FormsModule。**/// 1.导入模块import { BrowserModule } from '@angular/platform-browser';import { FormsModule } from '@angular/forms'; // <-- NgModel 在这里import { NgModule } from '@angular/core';// 2.导入组件import { AppComponent } from './app.component';import { HeroesComponent } from './heroes/heroes.component';@NgModule({  /**   * AppModule 声明这两个应用程序组件,AppComponent和HeroesComponent。   */  declarations: [    AppComponent,    HeroesComponent  ],  imports: [    BrowserModule,    /**     * 然后添加FormsModule到元数据的数组中,     * 其中包含应用程序需要的外部模块列表。@NgModuleimports     */     /**      * 每个组件必须在一个 NgModule中声明。      * 你没有声明HeroesComponent。那么,为什么该应用程序工作?      * 它的工作原因是Angular CLI HeroesComponent在AppModule它生成该组件时进行了声明。      * 打开src/app/app.module.ts并HeroesComponent在顶部附近找到导入。      */    FormsModule  ],  providers: [],  bootstrap: [AppComponent]})export class AppModule { }

  

//hero.ts// 这个是创建的Hero类export class Hero{    id: number;    name: string;}

  

/heroes/heroes.component.html

heroes works{

{hero}}!

{
{ hero.name | uppercase }} Details

id: {
{hero.id}}
name: {
{hero.name}}

  

/heroes/heroes.component.css

  

heroes/heroes.component.tsimport { Component, OnInit } from '@angular/core';// 表单模块// import { FormsModule } from '@angular/forms';// 导入组件hero.jsimport { Hero } from '../hero';@Component({  //组件的CSS元素选择器  //在CSS元素选择, 'app-heroes'是相匹配的标识父组件模板内此组件的HTML元素的名称  selector: 'app-heroes',  //组件模板文件的位置  templateUrl: './heroes.component.html',  //组件的私有CSS样式的位置  styleUrls: ['./heroes.component.css']})export class HeroesComponent implements OnInit {  // Hero对象值  hero: Hero = {    id: 1,    name: 'Windstorm'  }  constructor() { }  //这ngOnInit是一个生命周期钩子 Angular ngOnInit在创建组件后立即调用。这是放置初始化逻辑的好地方  ngOnInit() {  }}

  

转载于:https://www.cnblogs.com/cisum/p/8510154.html

你可能感兴趣的文章
上周热点回顾(10.20-10.26)
查看>>
C#正则表达式引发的CPU跑高问题以及解决方法
查看>>
云计算之路-阿里云上:“黑色30秒”走了,“黑色1秒”来了,真相也许大白了...
查看>>
APScheduler调度器
查看>>
设计模式——原型模式
查看>>
【jQuery UI 1.8 The User Interface Library for jQuery】.学习笔记.1.CSS框架和其他功能
查看>>
如何一个pdf文件拆分为若干个pdf文件
查看>>
web.xml中listener、 filter、servlet 加载顺序及其详解
查看>>
前端chrome浏览器调试总结
查看>>
获取手机验证码修改
查看>>
数据库连接
查看>>
python中数据的变量和字符串的常用使用方法
查看>>
等价类划分进阶篇
查看>>
delphi.指针.PChar
查看>>
Objective - C基础: 第四天 - 10.SEL类型的基本认识
查看>>
java 字符串转json,json转对象等等...
查看>>
极客前端部分题目收集【索引】
查看>>
第四天 selenium的安装及使用
查看>>
关于js的设计模式(简单工厂模式,构造函数模式,原型模式,混合模式,动态模式)...
查看>>
KMPnext数组循环节理解 HDU1358
查看>>