angular模块的组成(详解Angular结构型指令模块和样式)
angular模块的组成
详解Angular结构型指令模块和样式目录
- 一,结构型指令
- 二,模块Module
- 写一个forRoot()
- 三,风格定义
- 使用ngStyle在拖拽的时候调整顺序
*是一个语法糖,<a *.jpg" alt="angular模块的组成(详解Angular结构型指令模块和样式)" border="0" />
<ng-template [.jpg" alt="angular模块的组成(详解Angular结构型指令模块和样式)" border="0" />
<a>退出</a> </ng-template> 避免了写ng-template。 结构型指令为什么能改变结构? .jpg" alt="angular模块的组成(详解Angular结构型指令模块和样式)" border="0" />
set方法标记为@Input,如果条件为真而且不含view的话,把内部hasView标识位置为true然后通过viewContainer根据template创建一个子view。 条件不为真就用视图容器清空所含内容。 viewContainerRef:容器,指令所在的视图的容器 什么是模块?独立功能的文件集合,用来组织文件。 模块元数据 entryComponents:进入模块就要立刻加载的(比如对话框),而不是调用的时候加载。 exports:模块内部的想要让大家公用,一定要export出来。 forRoot()是什么? imports: [RouterModule.forRoot(routes)], imports: [RouterModule.forChild(route)]; 其实forRoot和forChild是两个静态工厂方法。
<ng-template [.jpg" alt="angular模块的组成(详解Angular结构型指令模块和样式)" border="0" />
constructor(guard: any, router: Router);
/**
* Creates a module with all the router providers and directives. It also optionally sets up an
* application listener to perform an initial navigation.
*
* Options (see `ExtraOptions`):
* * `enableTracing` makes the router log all its internal events to the console.
* * `useHash` enables the location strategy that uses the URL fragment instead of the history
* API.
* * `initialNavigation` disables the initial navigation.
* * `errorHandler` provides a custom error handler.
* * `preloadingStrategy` configures a preloading strategy (see `PreloadAllModules`).
* * `onSameUrlNavigation` configures how the router handles navigation to the current URL. See
* `ExtraOptions` for more details.
* * `paramsInheritanceStrategy` defines how the router merges params, data and resolved data
* from parent to child routes.
*/
static forRoot(routes: Routes, config?: ExtraOptions): ModuleWithProviders<RouterModule>;
/**
* Creates a module with all the router directives and a provider registering routes.
*/
static forChild(routes: Routes): ModuleWithProviders<RouterModule>;
}
元数据根据不同情况会变化,元数据没办法动态指定,不写元数据,直接构造一个静态的工程方法,返回一个Module。
写一个forRoot()
创建一个serviceModule:$ ng g m services
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; @NgModule({ declarations: [], imports: [ CommonModule ] }) export class ServicesModule { }
ServiceModule里面的元数据不要了。用一个静态方法forRoot返回。
import { NgModule, ModuleWithProviders } from '@angular/core'; import { CommonModule } from '@angular/common'; @NgModule() export class ServicesModule { static forRoot(): ModuleWithProviders{ return { ngModule: ServicesModule, providers:[] } } }
在core Module中导入的时候使用
imports: [ServicesModule.forRoot();]
三,风格定义ngClass,ngStyle和[class.yourclass]
ngClass:用于条件动态指定样式类,适合对样式做大量更改的情况。预先定义好class。
<mat-list-item class="container" [@item]="widerPriority" [ngClass]="{ 'priority-normal':item.priority===3, 'priority-important':item.priority===2, 'priority-emergency':item.priority===1 }"
ngStyle:用于条件动态指定样式,适合少量更改的情况。比如下面例子中[ngStyle]="{'order':list.order}"。key是一个字符串。
[class.yourclass] :[class.yourclass] = "condition"直接对应一个条件。这个condition满足适合应用这个class。等价于ngClass的写法,相当于是ngClass的变体,简写。
<li class="content" mat-line [class.completed]="item.completed"> <span [matTooltip]="item.desc">{{item.desc}}</span> </li>
使用ngStyle在拖拽的时候调整顺序
原理就是动态指定flex容器样式的order为list模型对象里的order。
1、在taskHome中给app-task-list添加order
list-container是一个flex容器,它的排列顺序是按照order去排序的。
<app-task-list *ngFor="let list of lists" class="list-container" app-droppable="true" [dropTags]="['task-item','task-list']" [dragEnterClass]=" 'drag-enter' " [app-draggable]="true" [dragTag]=" 'task-list' " [draggedClass]=" 'drag-start' " [dragData]="list" (dropped)="handleMove($event,list)" [ngStyle]="{'order': list.order}" >
2、list数据结构里需要有order,所以增加order属性
lists = [ { id: 1, name: "待办", order: 1, tasks: [ { id: 1, desc: "任务一: 去星巴克买咖啡", completed: true, priority: 3, owner: { id: 1, name: "张三", avatar: "avatars:svg-11" }, dueDate: new Date(), reminder: new Date() }, { id: 2, desc: "任务一: 完成老板布置的PPT作业", completed: false, priority: 2, owner: { id: 2, name: "李四", avatar: "avatars:svg-12" }, dueDate: new Date() } ] }, { id: 2, name: "进行中", order:2, tasks: [ { id: 1, desc: "任务三: 项目代码评审", completed: false, priority: 1, owner: { id: 1, name: "王五", avatar: "avatars:svg-13" }, dueDate: new Date() }, { id: 2, desc: "任务一: 制定项目计划", completed: false, priority: 2, owner: { id: 2, name: "李四", avatar: "avatars:svg-12" }, dueDate: new Date() } ] } ];
3、在list拖拽换顺序的时候,改变order
交换两个srcList和目标list的顺序order
handleMove(srcData,targetList){ switch (srcData.tag) { case 'task-item': console.log('handling item'); break; case 'task-list': console.log('handling list'); const srcList = srcData.data; const tempOrder = srcList.order; srcList.order = targetList.order; targetList.order = tempOrder; default: break; } }
以上就是详解Angular结构型指令模块和样式的详细内容,更多关于Angular结构型指令模块和样式的资料请关注开心学习网其它相关文章!
- angular定义一个管道(Angular管道PIPE的介绍与使用方法)
- angular使用方法(Angular环境搭建及简单体验小结)
- angular教程第九讲(浅谈Angular的12个经典问题)
- angularjs过滤器
- angular引入组件库(详解Angular组件之中间人模式)
- angular封装公共组件(详解Angular组件之生命周期二)
- angular组件化(详解Angular父子组件通讯)
- angular开发详解(详解Angular组件生命周期一)
- angular路由树(详解Angular路由之子路由)
- vue react和angular(详解React Angular Vue三大前端技术)
- angularjs使用指令(详解Angular路由动画及高阶动画函数)
- angular封装进度条组件(如何用DevUI搭建自己的Angular组件库)
- angular简单介绍(详解Angular依赖注入)
- angular开发详解(详解Angular动态组件)
- angular怎么创建声明(使用Angular CDK实现一个Service弹出Toast组件功能)
- angular模块的组成(详解Angular结构型指令模块和样式)
- 开国中将,王牌军63军首任政委,两个连襟一个上将一个少将传为佳话(王牌军63军首任政委)
- 臭名昭著的731部队最高负责人 石井四郎(臭名昭著的731部队最高负责人)
- 王牌部队,你看的剧情我看的时尚(你看的剧情我看的时尚)
- 被鉴定的古董价值300万 当心,你可能遇到诈骗了(被鉴定的古董价值300万)
- 英语难学吗(初中英语难学吗)
- 如何追女孩子(如何追女孩子的技巧和方法)
热门推荐
- mysql里修改密码命令(MySQL修改账号密码方法大全小结)
- serv-u操作手册(serv-U FTP软件的攻击防守修改教程[图文])
- dedecms栏目功能(织梦DEDECMS网站建设栏目自动添加nofollow的方法介绍)
- mysql索引详解及基本用法(Mysql普通索引与唯一索引的选择详析)
- SQL charindex怎么用
- 看懂云服务器带宽大小的区别(云服务器的流量与带宽是如何换算?)
- utf-8 gbk gb2312的区别
- 织梦栏目设置封面显示不正常(织梦列表页分页错位分页显示为竖排的解决方法)
- vue中的ref(Vue3.0中Ref与Reactive的区别示例详析)
- dedecms制作的网站如何发布(DedeCms后台添加编辑文章空白的解决方法)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9