Angular4中使用rxjs, http请求多次发送

发布于 2022-09-07 03:23:47 字数 1063 浏览 17 评论 0

在Angular4.x中使用Rxjs请求数据,发现多次请求会造成n+1次请求次数,极大地影响性能,目前只能采用最笨拙的依次声明对应Subscription对象一一手动取消订阅,感觉不是正常办法,想请教更好的解决方式,示例代码如下:

service:

getRuleHitList(): any {
      const formData = {
        'uuid': this.orderNo
      };
      this.$http
        .post(this.HOST.host + '/api/bqsBlackList', formData)
        .subscribe(res => {
          console.log(res);
          this.RuleHitSubject.next(res);
        })
    }

component:

ruleSubscription: Subscription;

getRule() {
    this.service.getRuleHitList();
    this.ruleSubscription = this.service.RuleHitSubject.subscribe(res => {
        if (res && res.code === '0') {
          if (res.strategySet || res.Rule) {
            this.ruleListFlag = true;
            this.ruleList = res;
          }
        } else {
          this.ruleListFlag = false;
        }
        this.ruleSubscription.unsubscribe()
    })

上述getRule会在当前页面多次用到,且component不会销毁,因此不加unsubscribe()手动取消订阅页面会越来越卡,总感觉自己用的不对,请大佬不吝赐教;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夏九 2022-09-14 03:23:47

你这么做就复杂了啊。。。

你首先在component一个调用service中的getHttpRuleList()方法来发一个http请求,然后订阅了这个请求的结果,并将这个结果传递给了RuleHitSubject, 又在component中来订阅这个RuleHitSubject,来拿到http返回的结果, 是不是有点多此一举了呢?

首先,http请求可以不用直接就订阅的,我们可以直接返回这个observable。
然后在component中直接订阅这个observable, 将component中的订阅作为一个流的终点。

所以你的代码可以改成这样:

service:

 getRuleHitList(): Observable<any> {
      const formData = {
        'uuid': this.orderNo
      };
      return this.$http.post(this.HOST.host + '/api/bqsBlackList', formData)
 }

component:

ruleSubscription: Subscription = null;

getRule() {
    if (this.ruleSubscription === null) {
        this.ruleSubscription = this.service.getRuleHitList().subscribe(res => {
        if (res && res.code === '0') {
          if (res.strategySet || res.Rule) {
            this.ruleListFlag = true;
            this.ruleList = res;
          }
        } else {
          this.ruleListFlag = false;
        }
    });
 }

而针对订阅,通常都要在组件销毁的时候来取消订阅,以防订阅的引用在应用中越来越多。

ngOnDestroy() {
    if (this.ruleSubscription) {
        this.ruleSubscription.unsubscribe();
     }
}
你是我的挚爱i 2022-09-14 03:23:47
getRuleHitList(): any {
      const formData = {
        'uuid': this.orderNo
      };
      return this.$http
        .post(this.HOST.host + '/api/bqsBlackList', formData);
    }
ruleSubscription: Subscription;

getRule() {
    this.service.getRuleHitList().subscribe(res => {
        if (res && res.code === '0') {
            if (res.strategySet || res.Rule) {
                this.ruleListFlag = true;
                this.ruleList = res;
            }
        } else {
            this.ruleListFlag = false;
        }
    });
    
}
朦胧时间 2022-09-14 03:23:47

http 返回一个 Observable<any> 流,所以你在服务定义请求流的时候不需订阅。

getRuleHitList(): any {
  const formData = {
    ...
  }
  return this.$http.post(this.HOST.host + '/api/bqsBlackList', formData)
}

同时组件使用的时候不用考虑注销订阅,angular 自动执行取消订阅。

getRuleHitList().subscribe(res => {
    ...
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文