angularjs1.x.x实战之TodoList

功能描述:
1). 显示Todo列表(名称,状态)
2). 可以删除,可以编辑,可以添加Todo信息
技术点描述:
1). 使用service, factory, module, component, controller, constant
开发设计:

1). todoListController(constroller 控制器)

2). todoListComponent(component 列表组件)

3). todoComponent(component todo组件)

4). todoListService(service 数据服务)

5). todoListFactory(factory 数据工厂)

6). TodoStatus(constant todo状态)

7). TodoDefaultText(constant todo默认名称)

8). TodoDefaultStatus(constant todo默认状态)

因为代码篇幅过长,所以代码事先写好如下:




    
    
            
     

    

TodoList 添加

你可能感兴趣的:(angularjs1.x.x实战之TodoList)