标签:att ng-model 升级 参考 play for mod repeat sys
原项目用ng1.5写的,现在改成ng2.0了,踩了不少坑,不过都忘记了。
如果你也正好要做这个工作,正好看到这个文章,不妨参考下。
AngularJs 1.x -> 2.0
ng-repeat -> *ngFor
ng-show -> *ngIf [hidden] [style.display]=""
ng-class -> [ngClass]
ng-if -> *ngIf
ng-model -> [(ngModel)] + name=‘‘
ng-click -> (click)
ui-sref -> routerLink="../{{p.ID}}"
myattr=‘x‘ -> attr.myattr=‘x‘
另,<script>不再支持了,用System.Import(),我没试过。
AngularJs 1.x 升级到 AngularJs 2.0
标签:att ng-model 升级 参考 play for mod repeat sys
原文地址:http://www.cnblogs.com/heguo/p/6066801.html