我需要学习angular2,关于它的文档不多,所以我决定在官方网站上学习angualr2:https://angular.io/docs/ts/latest/tutorial/
我从https://github.com/buckyroberts/angular-2-template安装了angular2样板文件。
当我关注课程时,有些事情是不同的。
1
官方网站上的教程他们导入角核如下:
import {Component} from '@angular/core';
但是样板:
import {Component} from 'angular2/core';
官方网站上的教程是否基于角度1?没角2?
2
https://angular.io/docs/ts/latest/tutorial/toh-pt1.html#!#two-way-binding部分。
官方教程导入angular/form
,最后可能是双向绑定。
但是样板,他们不会导入angular/form
但可能是双向绑定。
不同吗?
我很困惑。
学习angular2的最佳方法是什么?我认为还有很多版本,还有更好的想法吗?
答案 0 :(得分:1)
https://github.com/buckyroberts/angular-2-template 演示旧版示例。
您可以在此处参考新版内容: https://github.com/angular/quickstart
仅供参考:新版本,
<强> 1)强>
import {Component} from 'angular2/core';
在 beta version
中,但是Angular2经历了 RC(release candidate)
和 final version
。所以它被移除并更改为 @angular/core
,因为 RC
2)与 angular/form
相同,现在 @angular/forms
。
有关详细信息,请查看以下内容:https://github.com/angular/angular/blob/master/CHANGELOG.md