angualr
yangxiaoyanger
这个作者很懒,什么都没留下…
展开
-
angualr快速开始
1. 安装开发环境注:如果你的电脑中还没有安装nodejs和npm,请先安装nodejs和npm。确保你的node是6.9.x版本或者以上,npm是3.x.x或以上。npm install -g @angular/cli 2. 新建项目ng new my-app 3. 启动cd my-app ng serve --open --open(或者--o)可以自动打开浏览器窗口,默认是http://lo...原创 2018-03-15 13:33:31 · 149 阅读 · 0 评论 -
Architecture overview
The basic building blocks of an Angular application are NgModules, which provide a compilation context for components. NgModules ngModeule是angualr应用基本构建模块,为组件提供了编译的上下文。ngModulecollect related code int...翻译 2018-03-21 10:46:47 · 349 阅读 · 0 评论 -
angular4 的动态style之background-image
参考angualr4之background-image的问题Style bindingYou can set inline styles with a style binding.Style binding syntax resembles property binding. Instead of an element property between brackets, start with t...原创 2018-05-17 11:13:37 · 6938 阅读 · 0 评论 -
angular4中template语法
<table id="example" class="am-table am-table-bordered am-table-striped am-table-hover"> <thead> <tr> ...原创 2018-05-17 13:44:12 · 2335 阅读 · 0 评论 -
angular模块化和依赖注入
AngularJS使用模块化的组织方式,和依赖注入的设计。这使得模块之间耦合度较低,模块更容易复用。同时支持声明式的编程风格。 在你创建Angular Module 或者 Service 之前,首先需要了解一下 Angular Module 和 Service 的工作方式。模块概念在Angular中,一个Module通常对应一个js文件,其中可以包括Controller、Service、Filte...转载 2018-06-06 09:46:44 · 365 阅读 · 0 评论