We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
angular中没有以前老版本的ng-show,因此元素直接使用ngStyle或者ngClass
ng-show
ngStyle
ngClass
ngSwitchDefault是可选的,如果没有匹配到,则不渲染任何值
ngSwitchDefault
[style.fontSize.px]来指定font-size的单位是px
[style.fontSize.px]
在对数组进行迭代时,如果需要获取每一项的索引,可以使用let idx = index
let idx = index
如果某个部分不想让angular编译,可以使用ngNonBindable
ngNonBindable
angular对于表单的解决方案
import module之后就可以使用该module中的所有指令
ngForm做了一件隐晦的工作,他的选择器包含form标签。这意味着当我们导入formModule时候,ngForm就会被自动附加到视图中所有的<form>上
<form>
下面代码中#f="ngForm"为视图中的ngForm指定了一个别名,并且绑定到变量f
#f="ngForm"
<form #f="ngForm"></form>
当我们使用不带有属性值的ngModel时,我们是要指定单向数据绑定以及希望在表单中创建一个名为sku的formControl
为一个字段添加多个验证器可以使用Validator.compose()来实现,只有里面的多个验证器都合法时,FormControl才是合法的
Validator.compose()
表单里面的要点就是要学会使用FormGroup, FormControl, Validation
FormGroup, FormControl, Validation
在不需要新请求的情况下,允许在代码中创建新的浏览器记录项并显示适当的url,这是利用history.pushState()来实现的,在不支持上述方法的时候,会被迫使用锚点进行标记
history.pushState()
依赖注入可以提供一个更加松耦合的架构
The text was updated successfully, but these errors were encountered:
No branches or pull requests
angular中没有以前老版本的
ng-show
,因此元素直接使用ngStyle
或者ngClass
ngSwitchDefault
是可选的,如果没有匹配到,则不渲染任何值[style.fontSize.px]
来指定font-size的单位是px在对数组进行迭代时,如果需要获取每一项的索引,可以使用
let idx = index
如果某个部分不想让angular编译,可以使用
ngNonBindable
angular对于表单的解决方案
import module之后就可以使用该module中的所有指令
ngForm做了一件隐晦的工作,他的选择器包含form标签。这意味着当我们导入formModule时候,ngForm就会被自动附加到视图中所有的
<form>
上下面代码中
#f="ngForm"
为视图中的ngForm指定了一个别名,并且绑定到变量f当我们使用不带有属性值的ngModel时,我们是要指定单向数据绑定以及希望在表单中创建一个名为sku的formControl
为一个字段添加多个验证器可以使用
Validator.compose()
来实现,只有里面的多个验证器都合法时,FormControl才是合法的表单里面的要点就是要学会使用
FormGroup, FormControl, Validation
在不需要新请求的情况下,允许在代码中创建新的浏览器记录项并显示适当的url,这是利用
history.pushState()
来实现的,在不支持上述方法的时候,会被迫使用锚点进行标记依赖注入可以提供一个更加松耦合的架构
The text was updated successfully, but these errors were encountered: