使用ng6-file-man时如何拦截上传请求?

时间:2018-11-27 11:41:27

标签: angular angular-http-interceptors

我正在使用示例ng6-file-man-test为我的应用程序创建文件上传功能,该示例使用ng6-file-man模块来启用各种文件/文件夹操作功能。根据我的应用程序要求,我还将拦截器用于向其添加令牌的请求。拦截器适用于大多数请求,但不适用于上传和下载请求。

  

jwt.interceptor.ts

import { Injectable } from '@angular/core';
import { HttpInterceptor, HttpHandler, HttpRequest, HttpEvent, HttpResponse }
  from '@angular/common/http';
import { Observable } from 'rxjs';

@Injectable()
export class JwtInterceptor implements HttpInterceptor {
  intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {


    const duplicate = request.clone({ params: request.params.set('token', 'jwt-token') });

    return next.handle(duplicate);
  }
}

我没有对示例中给出的AppComponent进行任何更改。

  

以下是添加了拦截器的app.module.ts。

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';

import { AppComponent } from './app.component';
import { FileManagerModule } from 'ng6-file-man';
import { JwtInterceptor } from '../_helpers/jwt.interceptor';
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    HttpClientModule,
    BrowserModule,
    FileManagerModule

  ],
  providers: [
    {
      provide: HTTP_INTERCEPTORS,
      useClass: JwtInterceptor,
      multi: true
    }
  ],
  bootstrap: [AppComponent]
})
export class AppModule {
}

文件管理器组件如下

    export class FileManagerComponent implements OnInit, AfterContentChecked {
  tree: TreeModel;
  appLanguage = 'it';

  constructor() {
    let currentUser = JSON.parse(localStorage.getItem('currentUser'));
    const treeConfig: ConfigInterface = {
      baseURL: 'https://backend.com/',
      api: {
        listFile: 'api/file/list',
        uploadFile: 'api/file/upload?token=' + currentUser.access_token,
        downloadFile: 'api/file/download',
        deleteFile: 'api/file/remove',
        createFolder: 'api/file/directory',
        renameFile: 'api/file/rename',
        searchFiles: 'api/file/search'
      },
      options: {
        allowFolderDownload: false,
        showFilesInsideTree: true
      }
    };

    this.tree = new TreeModel(treeConfig);
  }

  itemClicked(event: any) {
    console.log(event);
  }

  ngAfterContentChecked() {
    console.log('after');
  }

  ngOnInit() {
    console.log('before');

    let container = document.querySelector('.file-manager-left');

  }

}

我想知道是否存在一种方法可以拦截模块向后端发出的uploaddownload请求。

1 个答案:

答案 0 :(得分:0)

这是由于您要拦截的所有请求都需要使用HttpService引起的。

  • Uplodad正在使用FineUploader库,该库似乎未与HttpService连接
  • 通过使用插入的参数仅包含path.id的新窗口打开新窗口来进行下载

如果您对我们的GitHub issues

提出任何解决方案,我们将很高兴