s*r
2 楼
為什麼我一想react的設計就覺得一片混亂
可是它竟然還是那麼火
可是它竟然還是那麼火
w*g
3 楼
Hope so.
l*n
4 楼
react is actually quite simple. it is almost like a template language with
state. angular2 is a lot easier since it provides so many directives which
react lacks.
state. angular2 is a lot easier since it provides so many directives which
react lacks.
z*o
5 楼
应该是满强的,连我都绿了
b*i
7 楼
是很强,都恭喜不过来了。
w*m
8 楼
react技术角度还是先进多了。
l*n
12 楼
walkrandom: change detection or virtual dom? virtual dom is better than
change detection?
change detection?
w*m
13 楼
React的virtual dom, component, one-way data flow等等都是非常先进的创造。
最激进的是取消了HTML模版,全部集中到JS的语言层面。这应该是个大方向。
当然这些都不重要了,大杀器是react native。从web到mobile,三网合一,程序员的
究极梦想。
Angular 2感觉是google给微软外包的一个项目。异步用rxJS, 语言typescript, ide用
VSC。
最新的ngConf看了一下,也就google那几个人,没啥新意,可能在google也不是很重视。
企业用比较好,太重了。 微软应该比较擅长。
个人的话能跳船就跳吧。
最激进的是取消了HTML模版,全部集中到JS的语言层面。这应该是个大方向。
当然这些都不重要了,大杀器是react native。从web到mobile,三网合一,程序员的
究极梦想。
Angular 2感觉是google给微软外包的一个项目。异步用rxJS, 语言typescript, ide用
VSC。
最新的ngConf看了一下,也就google那几个人,没啥新意,可能在google也不是很重视。
企业用比较好,太重了。 微软应该比较擅长。
个人的话能跳船就跳吧。
s*r
14 楼
angular2和Nativescript性能也没有差到哪里
angular2 RC的大小,性能也不比react差啊
framework vs lib是没有错,但是Framework如果设计的好,真的可以省很多事情。
貌似我的理解是angular2的component应该更加reusable
视。
【在 w********m 的大作中提到】
: React的virtual dom, component, one-way data flow等等都是非常先进的创造。
: 最激进的是取消了HTML模版,全部集中到JS的语言层面。这应该是个大方向。
: 当然这些都不重要了,大杀器是react native。从web到mobile,三网合一,程序员的
: 究极梦想。
: Angular 2感觉是google给微软外包的一个项目。异步用rxJS, 语言typescript, ide用
: VSC。
: 最新的ngConf看了一下,也就google那几个人,没啥新意,可能在google也不是很重视。
: 企业用比较好,太重了。 微软应该比较擅长。
: 个人的话能跳船就跳吧。
angular2 RC的大小,性能也不比react差啊
framework vs lib是没有错,但是Framework如果设计的好,真的可以省很多事情。
貌似我的理解是angular2的component应该更加reusable
视。
【在 w********m 的大作中提到】
: React的virtual dom, component, one-way data flow等等都是非常先进的创造。
: 最激进的是取消了HTML模版,全部集中到JS的语言层面。这应该是个大方向。
: 当然这些都不重要了,大杀器是react native。从web到mobile,三网合一,程序员的
: 究极梦想。
: Angular 2感觉是google给微软外包的一个项目。异步用rxJS, 语言typescript, ide用
: VSC。
: 最新的ngConf看了一下,也就google那几个人,没啥新意,可能在google也不是很重视。
: 企业用比较好,太重了。 微软应该比较擅长。
: 个人的话能跳船就跳吧。
l*n
15 楼
用rxjs不是所谓的异步,而是为了notify changeDector something has change
for example,the following:
ngOnInit() {
this.addItemStream.subscribe(() => {
this.counter++; // application state changed
this.cd.markForCheck(); // marks path
})
}
for example,the following:
ngOnInit() {
this.addItemStream.subscribe(() => {
this.counter++; // application state changed
this.cd.markForCheck(); // marks path
})
}
w*m
16 楼
跟Angular 1 完全不一样,Angular 2和react都是要compile/transpile的。
Angular 2 的component带的HTML template是个灾难。
compile的时候不报错。打开浏览器一看什么都没有,也不知道哪里写错了。
现在的做法是,把template作为一个单独的HTML file,跟component同时打开。
程序员随时在一堆小文件里面进行目测。
结果是,程序员写component的时候痛苦不堪,恨不得把显示器给砸了。
【在 s*****r 的大作中提到】
: angular2和Nativescript性能也没有差到哪里
: angular2 RC的大小,性能也不比react差啊
: framework vs lib是没有错,但是Framework如果设计的好,真的可以省很多事情。
: 貌似我的理解是angular2的component应该更加reusable
:
: 视。
Angular 2 的component带的HTML template是个灾难。
compile的时候不报错。打开浏览器一看什么都没有,也不知道哪里写错了。
现在的做法是,把template作为一个单独的HTML file,跟component同时打开。
程序员随时在一堆小文件里面进行目测。
结果是,程序员写component的时候痛苦不堪,恨不得把显示器给砸了。
【在 s*****r 的大作中提到】
: angular2和Nativescript性能也没有差到哪里
: angular2 RC的大小,性能也不比react差啊
: framework vs lib是没有错,但是Framework如果设计的好,真的可以省很多事情。
: 貌似我的理解是angular2的component应该更加reusable
:
: 视。
l*n
17 楼
我写angular 2怎么一点问题都没有?template怎么成灾难了? 有那么复杂吗?简单的
binding,directive,还有啥,这也能出错?
【在 w********m 的大作中提到】
: 跟Angular 1 完全不一样,Angular 2和react都是要compile/transpile的。
: Angular 2 的component带的HTML template是个灾难。
: compile的时候不报错。打开浏览器一看什么都没有,也不知道哪里写错了。
: 现在的做法是,把template作为一个单独的HTML file,跟component同时打开。
: 程序员随时在一堆小文件里面进行目测。
: 结果是,程序员写component的时候痛苦不堪,恨不得把显示器给砸了。
binding,directive,还有啥,这也能出错?
【在 w********m 的大作中提到】
: 跟Angular 1 完全不一样,Angular 2和react都是要compile/transpile的。
: Angular 2 的component带的HTML template是个灾难。
: compile的时候不报错。打开浏览器一看什么都没有,也不知道哪里写错了。
: 现在的做法是,把template作为一个单独的HTML file,跟component同时打开。
: 程序员随时在一堆小文件里面进行目测。
: 结果是,程序员写component的时候痛苦不堪,恨不得把显示器给砸了。
w*m
18 楼
首先,angular 2里面的template是个字符串。
万一要少写个符号,
IDE不知道,
compiler不知道,
浏览器也不知道。
你也不知道。
所以,不能这么写。
要遵循Best Practice,把template写成一个单独的HTML,
然后在component里面用directive加以引用。
这样问题来了
Angular 1一个page一个template,当然轻松愉快,没问题。
但是对于Angular 2来说,一个page可能有几十个component。
那么,写一个页面,要管理分散在各地的几十个小html模版。
对程序员要求太高。
【在 l**********n 的大作中提到】
: 我写angular 2怎么一点问题都没有?template怎么成灾难了? 有那么复杂吗?简单的
: binding,directive,还有啥,这也能出错?
万一要少写个符号,
IDE不知道,
compiler不知道,
浏览器也不知道。
你也不知道。
所以,不能这么写。
要遵循Best Practice,把template写成一个单独的HTML,
然后在component里面用directive加以引用。
这样问题来了
Angular 1一个page一个template,当然轻松愉快,没问题。
但是对于Angular 2来说,一个page可能有几十个component。
那么,写一个页面,要管理分散在各地的几十个小html模版。
对程序员要求太高。
【在 l**********n 的大作中提到】
: 我写angular 2怎么一点问题都没有?template怎么成灾难了? 有那么复杂吗?简单的
: binding,directive,还有啥,这也能出错?
l*n
19 楼
Isn't React the same that each component has its own template? What is your
point that React is better than Angular 2? Isn't React the same that
template is just string?
【在 w********m 的大作中提到】
: 首先,angular 2里面的template是个字符串。
: 万一要少写个符号,
: IDE不知道,
: compiler不知道,
: 浏览器也不知道。
: 你也不知道。
: 所以,不能这么写。
: 要遵循Best Practice,把template写成一个单独的HTML,
: 然后在component里面用directive加以引用。
: 这样问题来了
point that React is better than Angular 2? Isn't React the same that
template is just string?
【在 w********m 的大作中提到】
: 首先,angular 2里面的template是个字符串。
: 万一要少写个符号,
: IDE不知道,
: compiler不知道,
: 浏览器也不知道。
: 你也不知道。
: 所以,不能这么写。
: 要遵循Best Practice,把template写成一个单独的HTML,
: 然后在component里面用directive加以引用。
: 这样问题来了
s*r
20 楼
都没有老中写的vuejs好用
相关阅读
(面试题) 给code挑毛病(updated with multiple choices)求电子书:Financial Trading Systems Design And Development With C++ 呵呵g++ compilation problem in linuxC++里面如何最方便的表示这个数组的数组?请教一个Qt的问题菜鸟入门就载跟斗:问算法介绍第一道题c++,这种做法不行?免费拿 $100 Cash +$75 Ing Direct Bonus再问一个在线游戏开发的问题:NPC生成是On demand的吗? (转载)请问如何能让Qt(C++)中的浮点运算尽可能精确?[合集] 超强的bug我觉得这个在线10人都是系统自动翻倍以后的结果。如何对下标运算,从而产生如下子序列。C++ Q17: throw 2用python urlopen 抓mitbbs页面的问题C++ plotting libary不算小的一个c++项目的code可以用什么工具自动生成吗rand() in multitreadinga question about overriding[合集] 请教C/C++/JAVA输入问题