2-1 模块组件模板目录层级及简单定义
程序员文章站
2022-08-10 09:54:27
1. 简单定义 @Component():装饰器 @Component(): 组件元数据装饰器 元数据: selector:css选择器,可以用app-root来调用 temlateUrl:模板html位置 sytleUrls: Template:模板 Controller:控制器 2. 目录层级结 ......
1. 简单定义
@component():装饰器
@component():
组件元数据装饰器
元数据:
selector:css选择器,可以用app-root来调用
temlateurl:模板html位置
sytleurls:
template:模板
controller:控制器
2. 目录层级结构
~
e2e
src
node_nodules
angular-cli.json : cli配置文件
karma.conf.json:单元测试
package.json:npm工具配置文件
protractor.conf.js:自动化测试配置文件
src:
app:代码
assets:静态资源
environments:多环境配置文件
index.html:系统根html
main.ts:web应用执行入口
polyfills.ts:倒入库
styles.css:全局样式
test.ts:自动化测试
tsconfig.json:typescript编译器配置文件
上一篇: Android仿QQ复制昵称效果
下一篇: Ajax跨域问题及解决方案