angular 增删改查流程

1、 项目开发过程
Eg:系统设置 -> 居民关系管理 (system -> relationship)
(1) 初始化居民关系管理模块
创建模块
使用shell来到src\app\system文件夹,执行ng g module relationship命令。
效果:
relationship
└──relationship.module.ts

(2) 初始化居民关系管理实体、mockapi、service层
创建实体文件:web/src/entity/relationship.ts
Mockapi文件:web/src/api/relationship.api.ts并更新导入web/src/api/apis.ts文件
Service文件:web/src/service/relationship.service.ts和web/src/service/relationship.service.spec.ts

(3) 功能原型
index原型,新增原型,编辑原型

eg:编辑原型
① 生成组件
使用shell进入src/app/system文件夹,执行创建组件命令:ng g c edit。
效果:
relationship
├── edit
│ ├── edit.component.css
│ ├── edit.component.html
│ ├── edit.component.spec.ts
│ └── edit.component.ts
├── relationship.module.ts

并更新了模块文件relationship.module.ts。

② edit.component.html文件
编写页面

(4) 表单检验
add、edit表单检验
① web/src/app/system/relationship/edit/edit.component.html
angular 增删改查流程_第1张图片

② web/src/app/system/relationship/edit/edit.component.ts
angular 增删改查流程_第2张图片

③ web/src/app/system/relationship/edit/edit.component.spec.ts
import {ReactiveFormsModule} from ‘@angular/forms’;

④ web/src/app/system/relationship/relationship.module.ts
import {ReactiveFormsModule} from ‘@angular/forms’;

(5) 实现原型
index使用MockApi完成分页功能、index查询功能
新增功能
编辑功能
删除功能

2、 eg:编辑功能的数据流
angular 增删改查流程_第3张图片
提交前:
(1)web/src/app/system/relationship/edit/edit.component.ts
angular 增删改查流程_第4张图片

(2)web/src/service/relationship.service.ts
angular 增删改查流程_第5张图片

(3)web/src/api/relationship.api.ts
angular 增删改查流程_第6张图片

点击保存按钮后:
(1)web/src/app/system/relationship/edit/edit.component.ts
angular 增删改查流程_第7张图片

(2)web/src/service/relationship.service.ts
angular 增删改查流程_第8张图片

(3)web/src/api/relationship.api.ts
angular 增删改查流程_第9张图片

你可能感兴趣的:(angular)