0

我需要向以这种形式出现的后端 url 发出请求:

localhost:8000/myapp/item1/:id1/item2/:id2/item3

其中id1id2是动态数字。我曾想过在构造函数中使用一个接受 2 个参数的服务,就像这样

export class Item3Service {

  private id1: number;
  private id2: number;

  constructor(
    id1: number,
    id2: number
  ) {
    this.id1 = id1;
    this.id2 = id2;
  }

  getList() {/**** implementation here ****/}
  getDetail(id3: number) {/**** implementation here ****/}
  create() {/**** implementation here ****/}
  update(id3: number) {/**** implementation here ****/}
  delete(id3: number) {/**** implementation here ****/}

}

我真的不知道如何将参数注入构造函数。我还需要在解析器中使用此服务,如何在解析器中将参数传递给它?在这种情况下创建注入令牌听起来毫无用处,因为令牌值每次都应该改变。我已经没有想法了

4

2 回答 2

1

你的服务最好是无状态的,它会降低你的应用程序的复杂性,并为你省去一些问题和调试,这在你的情况下是没有必要的,因为你总是可以从你激活的路由中获取item1Iditem2Id,所以让激活的route 保存应用程序的状态(在这种情况下,状态是选择的 Item1Id 和 Item2Id)并创建一个无状态服务,您可以从任何地方调用该服务并保存 Item API 的逻辑。

以下是我对您的服务的设想(请记住,这只是一个需要考虑的示例,因为我不完全了解您的语义和用例)

物品服务

export class ItemService {
  constructor(private http: HttpClient) {}

  getList(item1Id: string, item2Id: string) {
    /* Call to Get List endpoint with Item1Id and Item2Id */
  }

  getDetails(item1: string, item2: string, item3: string) {
    /* Call to Get Details endpoint with Item1Id and Item2Id and Item3Id */
  }
}

然后你可以在任何地方使用这个服务,只要你可以访问ActivatedRouteSnapshotActivatedRoute

在解析器中用于路由 item1/:item1Id/item2/:item2Id 的示例

export class ItemResolver implements Resolve<any> {
  constructor(private itemService: ItemService) {}

  resolve(
    route: ActivatedRouteSnapshot,
    state: RouterStateSnapshot
  ): Observable<any> {
    return this.itemService.getList(route.params['item1Id'], route.params['item2Id']);
  }
}

用于路由 item1/:item1Id/item2/:item2Id 的组件中的示例使用以获取项目 3 的详细信息

export class HelloComponent  {

  constructor(private route: ActivatedRoute, private itemService: ItemService) {}

  getDetails(item3Id) {
    this.route.params.pipe(
      take(1),
      map(({ item1Id, item2Id }) => {
        console.log(this.itemService.getDetails(item1Id, item2Id, item3Id))
      })
    ).subscribe();
  }
}

这是一个有效的 StackBlitz 演示:https ://stackblitz.com/edit/angular-ivy-h4nszy

您应该很少使用有状态服务(除非确实有必要,即使在这种情况下,我建议使用类似ngrx库来管理您的状态)与您提供的信息,但您确实不需要将参数传递给构造函数在您的服务中,您应该保持它无状态并将参数传递给您的方法。

于 2020-08-11T21:58:39.657 回答
1

我不知道您从哪里获得动态 id,但实际上您可以将它们放在提供程序数组中并像使用注入令牌一样使用依赖注入。如果可以为id当然创建工厂方法

服务

export class Item3Service {

  constructor(
    @inject(LOCALE_ID) private locale: string) {}

}

应用程序模块.ts

@NgModule({
  providers: [
    { provide: LOCALE_ID, useFactory: () => window.navigator.language}
  ]
})

编辑

由于 id 是您路线的一部分,我会这样做

零件

import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { MyServiceService } from '../my-service.service';

@Component({
  selector: 'app-routed',
  templateUrl: './routed.component.html',
  styleUrls: ['./routed.component.scss']
})
export class RoutedComponent implements OnInit {

  constructor(private route: Router, private myService: MyServiceService) { }

  ngOnInit(): void {
    this.myService.setUrl(this.route.url)
  }

}

服务

import { Injectable } from '@angular/core';
import { ReplaySubject, Observable } from 'rxjs';
import { share, switchMap } from 'rxjs/operators';

@Injectable({
  providedIn: 'root'
})
export class MyServiceService {
  private _url$: ReplaySubject<string> = new ReplaySubject<string>(1);

  private _mydata$: Observable<string>;
  get myData$() { return this._mydata$.pipe(share()); }


  constructor() {
    this._mydata$ = this._url$.pipe(
      switchMap(url => {
        const parsedUrl = this.parseUrl(url);
        return this.callBackend(parsedUrl)
      })
    )
  }

  setUrl(url: string) {
    this._url$.next(url);
  }

  private callBackend(parsedUrl): Observable<string> {
    // call backend 
  }

  private parseUrl(url: string): number[] {
    // parse ids
  }
}

于 2020-08-11T17:36:45.693 回答