课程开始很好,越听到后面越觉得好像是要着急下课, 要着急在规定的时间讲完这些东西, 很多东西都是一下子带过,为何不能以讲课为目的, 不要以完成任务为目的呢!!!!!
2017-08-12
讲的较深,需要深入了解ng的可以看看,初学者建议先熟悉angular的基本使用(最好做几个小项目)再来看,收货会很大。
另外,大漠的 angular2 视频也出来了,可以去优酷看~
另外,大漠的 angular2 视频也出来了,可以去优酷看~
2017-08-09
http://damoqiongqiu.iteye.com/blog/1920191
http://damoqiongqiu.iteye.com/blog/1920993
拿走,不谢
http://damoqiongqiu.iteye.com/blog/1920993
拿走,不谢
2017-08-07
Angular 1.6.5中 自定义属性的获取方式使用老师讲的获取方式报错,打印attr观察后发现,自定义属性直接定义成了attr的属性成员,直接引用即可,大小写仍然是坑。
例如:<hello HowToDo="just do it"></hello>
module.directive('hello',function(){
return {
restrict:'AE',
link:function(scope,element,attr){
element.bind('mouseenter',function(){
scope.load(attr.howtodo);
});
}
}
});
例如:<hello HowToDo="just do it"></hello>
module.directive('hello',function(){
return {
restrict:'AE',
link:function(scope,element,attr){
element.bind('mouseenter',function(){
scope.load(attr.howtodo);
});
}
}
});
2017-08-07