angular 6 实战我爱编程angular5+

走心干货-angular6新特性简述

2018-05-28  本文已影响1184人  小宝薯

Service
RxJS6
弃用与废除
ElementRef
Angular Elements
Ivy
Tree Shaking
ng update更新策略

angular6

〇️、前言

ng update;
ng add @angular/pwa

一、Service新的注入方式

import { UserService } from './user.service';
+
@Injectable()
export class UserService{
    
}
+
@NgModule({
   ...
   providers: [
    UserService
   ],
   ...
})

@Injectable({
    provideIn:'root' //新添的,表示从root根部就开始注入
})
export class UserService{
}

+
   @NgModule({
   providers: [], //删掉了之前版本需求的UserService
  
})


 describe('UserService',() => {
 //angular6以后注释掉的这些不需要了
    <!-- beforeEach(() => TestBed.configureTesingModule({-->
    <!--  providers:[UserService]-->
    <!--})); -->
    if('不返回用户', () => {
      const service =TestBed.get(UserService);
      expect(service.list().length).toBe(2);
    })
  })

二、RxJS 6

//RxJS5 版本
 import { Observable } from 'rxjs/Observable';
 import 'rxjs/add/observable/of';
 import 'rxjs/add/operator/map';

 const squares$: Observable<number> = Observable.of(1,2).map(n => n * n);
//RxJS5.5版本
 import { Observable } from 'rxjs/Observable';
import { of } from 'rxjs/observable/of';
import { map } from 'rxjs/operators';

 const squares$: Observable<number> = of(1,2).pipe(map(n => n * n);
 )
//现在引入RxJS 6.0
import { Observable, of } from 'rxjs';
import { map } from 'rxjs/operators';
const squares$:Observable<number> = of(1, 2).pipe(
  map(n => n * n)
  )
//RxJS6以前:
"dependencies": {
//...
"rxjs":"5.5.10",
"zone.js" :"0.8.26"
}
//RxJS6:
"dependencies": {
//...
"rxjs":"6.0.0",
"rxjs-compat":"6.0.0",
"zone.js" :"0.8.26"
}
规则名字 简介
rxjs-collapse-imports 将来自rxjs的多个对象导入到一个
rxjs-pipeable-operators-only 将有副影响的operators迁移到pipes管道里
rxjs-no-static-observable-methods 迁移静态Observables方法调用
rxjs-proper-imports 升级 RxJS 5.x.x 里的import语法到RxJS 6.0

三、弃用与废除

import { HttpClient } from '@angular/common/http';

四、ElementRef

//原来方式:
@ViewChild('loginInput') loginInput: ElementRef;

ngAfterViewInit() {
this.loginInput.nativeElement.focus();
}
//现在:
@ViewChild('loginInput') loginInput: ElementRef<HTMLInputElement>;

ngAfterViewInit() {
//现在这个nativeElement是"HTMLInputElement"
this.loginInput.nativeElement.focus();
}

五、Angular Elements

export class AppModule {
 constructor(private injector:Injector) { }
  ngDoBootstrao() {
    const AppElement = createCustomElement({
      AppComponent, { Injector: this.injector}
    });
    customElements.define('my-app',AppElement);
  }
}
//你可以自己创建一个组件
@Component({
  selector: 'ns-amelia',
  template: `<p>{{ ameliaName }}</p>`,
})
export class AmeliaComponent {
  @Input() ameliaName;
}
//将其定义为自定义元素
import { createCustomElement } from '@angular/elements';

platformBrowserDynamic().bootstrapModule(ameliaModule).then(({ injector }) {
    //获取es6的类
    const AmeliaElement = createCustomElement(AmeliaComponent, { injector });
    //用它来注册自定义元素
    customElements.define('ns-amelia',AmeliaElement)
}

六、Ivy: New Renderer

"angularCompileOptions": {
    "enableIvy": true
}

七、Tree Shaking

八、i18n国际化

九、ng update升级策略

npm install --save rxjs-compat

或者:

升级import方式与operators

九、animations

angular tools
上一篇 下一篇

猜你喜欢

热点阅读