Przesyłanie plików kątowych

192

Jestem początkującym w Angular, chcę wiedzieć, jak utworzyć część do przesyłania plików Angular 5 , próbuję znaleźć tutorial lub dokument, ale nigdzie nie widzę. Masz na to jakiś pomysł? Próbowałem plików ng4, ale to nie działa w Angular 5

rdzeń 114
źródło
2
więc chcesz przeciągnij i upuść lub zwykłego Choose Fileprzesyłania BTN? Bdw w obu przypadkach po prostu przesyłasz za pomocą FormData
Dhyey
4
Spójrz na primeng, używam go od dłuższego czasu i działa on z angular v5. primefaces.org/primeng/#/fileupload
Bunyamin Coskuner
Dla tych, którzy muszą przesłać JSON do klienta, sprawdź to pytanie: stackoverflow.com/questions/54971238/...
AnthonyW

Odpowiedzi:

426

Oto działający przykład przesyłania plików do interfejsu API:

Krok 1: Szablon HTML (file-upload.component.html)

Zdefiniuj prosty znacznik wejściowy typu file. Dodaj funkcję do (change)-event do obsługi wybierania plików.

<div class="form-group">
    <label for="file">Choose File</label>
    <input type="file"
           id="file"
           (change)="handleFileInput($event.target.files)">
</div>

Krok 2: Przesyłanie obsługi w TypeScript (file-upload.component.ts)

Zdefiniuj zmienną domyślną dla wybranego pliku.

fileToUpload: File = null;

Utwórz funkcję, której używasz w (change)-event tagu wejściowego pliku:

handleFileInput(files: FileList) {
    this.fileToUpload = files.item(0);
}

Jeśli chcesz obsłużyć wybór wielu plików, możesz iterować po tej tablicy plików.

Teraz utwórz funkcję przesyłania plików, dzwoniąc do Ciebie file-upload.service:

uploadFileToActivity() {
    this.fileUploadService.postFile(this.fileToUpload).subscribe(data => {
      // do something, if upload success
      }, error => {
        console.log(error);
      });
  }

Krok 3: Usługa przesyłania plików (file-upload.service.ts)

Przesyłając plik metodą POST, powinieneś użyć FormData, ponieważ możesz dodać plik do żądania HTTP.

postFile(fileToUpload: File): Observable<boolean> {
    const endpoint = 'your-destination-url';
    const formData: FormData = new FormData();
    formData.append('fileKey', fileToUpload, fileToUpload.name);
    return this.httpClient
      .post(endpoint, formData, { headers: yourHeadersConfig })
      .map(() => { return true; })
      .catch((e) => this.handleError(e));
}

Jest to więc bardzo prosty przykład roboczy, którego używam na co dzień w swojej pracy.

Gregor Doroschenko
źródło
6
@Katie, czy włączyłeś polypełnianie?
Gregor Doroschenko
2
@GregorDoroschenko Próbowałem użyć modelu z dodatkowymi informacjami na temat pliku i musiałem to zrobić, aby go uruchomić: const invFormData: FormData = new FormData(); invFormData.append('invoiceAttachment', invoiceAttachment, invoiceAttachment.name); invFormData.append('invoiceInfo', JSON.stringify(invoiceInfo)); Kontroler ma dwa odpowiednie parametry, ale musiałem przeanalizować JSON w kontrolerze. Mój kontroler Core 2 nie automatycznie pobierał modelu z parametru. Mój oryginalny projekt był modelem z właściwością pliku, ale nie mogłem go uruchomić
Papa Stahl
1
@GregorDoroschenko Wypróbowałem ten kodcreateContrat(fileToUpload: File, newContrat: Contrat): Observable<boolean> { let headers = new Headers(); const endpoint = Api.getUrl(Api.URLS.createContrat)); const formData: FormData =new FormData(); formData.append('fileKey', fileToUpload, FileToUpload.name); let body newContrat.gup(this.auth.getCurrentUser().token); return this.http .post(endpoint, formData, body) .map(() => { return true; }) }
OnnaB
1
@GregorDoroschenko I dla mnie nie działa. Content-Disposition: form-data; name="fileKey"; filename="file.docx" Content-Type: application/octet-stream <file>
Wysyłam
1
@OnnaB Jeśli używasz FormData dla pliku i innych właściwości, powinieneś przeanalizować plik i inne właściwości jako FormData. Nie możesz używać FormData i body jednocześnie.
Gregor Doroschenko
23

W ten sposób implementuję przesyłanie pliku do web API w projekcie.

Podzielam się o kogo martwić.

const formData: FormData = new FormData();
formData.append('Image', image, image.name);
formData.append('ComponentId', componentId);
return this.http.post('/api/dashboard/UploadImage', formData);

Krok po kroku

ASP.NET Web API

[HttpPost]
[Route("api/dashboard/UploadImage")]
public HttpResponseMessage UploadImage() 
{
    string imageName = null;
    var httpRequest = HttpContext.Current.Request;
    //Upload Image
    var postedFile = httpRequest.Files["Image"];
    //Create custom filename
    if (postedFile != null)
    {
        imageName = new String(Path.GetFileNameWithoutExtension(postedFile.FileName).Take(10).ToArray()).Replace(" ", "-");
        imageName = imageName + DateTime.Now.ToString("yymmssfff") + Path.GetExtension(postedFile.FileName);
        var filePath = HttpContext.Current.Server.MapPath("~/Images/" + imageName);
        postedFile.SaveAs(filePath);
    }
}

Formularz HTML

<form #imageForm=ngForm (ngSubmit)="OnSubmit(Image)">

    <img [src]="imageUrl" class="imgArea">
    <div class="image-upload">
        <label for="file-input">
            <img src="upload.jpg" />
        </label>

        <input id="file-input" #Image type="file" (change)="handleFileInput($event.target.files)" />
        <button type="submit" class="btn-large btn-submit" [disabled]="Image.value=='' || !imageForm.valid"><i
                class="material-icons">save</i></button>
    </div>
</form>

Plik TS do korzystania z API

OnSubmit(Image) {
    this.dashboardService.uploadImage(this.componentId, this.fileToUpload).subscribe(
      data => {
        console.log('done');
        Image.value = null;
        this.imageUrl = "/assets/img/logo.png";
      }
    );
  }

Service TS

uploadImage(componentId, image) {
        const formData: FormData = new FormData();
        formData.append('Image', image, image.name);
        formData.append('ComponentId', componentId);
        return this.http.post('/api/dashboard/UploadImage', formData);
    }
Hien Nguyen
źródło
1
W jaki sposób nie wysyłasz nagłówków?
Shalom Dahan
14

Bardzo łatwą i najszybszą metodą jest przesyłanie plików w formacie ng2 .

Zainstaluj przesyłanie plików ng2 przez npm. npm i ng2-file-upload --save

Najpierw zaimportuj moduł do swojego modułu.

import { FileUploadModule } from 'ng2-file-upload';

Add it to [imports] under @NgModule:
imports: [ ... FileUploadModule, ... ]

Narzut:

<input ng2FileSelect type="file" accept=".xml" [uploader]="uploader"/>

W twoim składniku ts:

import { FileUploader } from 'ng2-file-upload';
...
uploader: FileUploader = new FileUploader({ url: "api/your_upload", removeAfterUpload: false, autoUpload: true });

To najprostsze użycie tego. Aby poznać całą moc tego, zobacz demo

trueboroda
źródło
4
jak uzyskać odpowiedź po przesłaniu obrazu? jaka będzie odpowiedź, w dokumentacji brakuje tej części.
Muhammad Shahzad
7

Używam Angulara 5.2.11, podoba mi się rozwiązanie dostarczone przez Gregora Doroschenko, jednak zauważyłem, że przesłany plik ma zero bajtów, musiałem wprowadzić niewielką zmianę, aby działał dla mnie.

postFile(fileToUpload: File): Observable<boolean> {
  const endpoint = 'your-destination-url';
  return this.httpClient
    .post(endpoint, fileToUpload, { headers: yourHeadersConfig })
    .map(() => { return true; })
    .catch((e) => this.handleError(e));
}

Następujące linie (formData) nie działały dla mnie.

const formData: FormData = new FormData();
formData.append('fileKey', fileToUpload, fileToUpload.name);

https://github.com/amitrke/ngrke/blob/master/src/app/services/fileupload.service.ts

Amit
źródło
6

Ok, ponieważ ten wątek pojawia się wśród pierwszych wyników google, a dla innych użytkowników mających to samo pytanie, nie musisz ponownie wskoczyć na koło, jak wskazał trueboroda, istnieje biblioteka przesyłania plików ng2, która upraszcza ten proces przesyłania plik z kątami 6 i 7 wszystko, co musisz zrobić, to:

Zainstaluj najnowszą wersję Angular CLI

yarn add global @angular/cli

Następnie zainstaluj rx-kompatybil, aby uzyskać informacje dotyczące zgodności

npm install rxjs-compat --save

Zainstaluj przesyłanie plików ng2

npm install ng2-file-upload --save

Zaimportuj dyrektywę FileSelectDirective do swojego modułu.

import { FileSelectDirective } from 'ng2-file-upload';

Add it to [declarations] under @NgModule:
declarations: [ ... FileSelectDirective , ... ]

W twoim komponencie

import { FileUploader } from 'ng2-file-upload/ng2-file-upload';
...

export class AppComponent implements OnInit {

   public uploader: FileUploader = new FileUploader({url: URL, itemAlias: 'photo'});
}

Szablon

<input type="file" name="photo" ng2FileSelect [uploader]="uploader" />

Aby lepiej zrozumieć, możesz sprawdzić ten link: Jak przesłać plik za pomocą Angular 6/7

Mohamed Makkaoui
źródło
1
Dzięki za link. Przesyłanie działa dobrze na komputerze, ale przez całe życie nie mogę uzyskać przesyłania do pracy na urządzeniach mobilnych, takich jak iOS. Mogę wybrać plik z rolki aparatu, ale po przesłaniu zawsze kończy się niepowodzeniem. Jakieś pomysły? Do Twojej wiadomości, uruchamianie tego w mobilnym safari, a nie w zainstalowanej aplikacji.
ScottN
1
Cześć @ScottN i jesteś mile widziany, może problem pochodzi z przeglądarki, której używasz? przetestowałeś to z innym?
Mohamed Makkaoui,
1
Cześć @Mohamed Makkaoui dzięki za odpowiedź. Próbowałem w Chrome na iOS i wciąż ten sam wynik. Jestem ciekawy, czy jest to problem z nagłówkiem podczas publikowania na serwerze? Używam niestandardowego interfejsu WebAPI napisanego w .Net i NOT AWS FYI.
ScottN
1
Cześć @ScottN, nie będziemy mogli dowiedzieć się, czy jest to problem z nagłówkiem, dopóki nie debugujesz kodu za pomocą tego linku developers.google.com/web/tools/chrome-devtools/… i nie zobaczysz, jaki komunikat o błędzie pojawia się.
Mohamed Makkaoui
6

Osobiście robię to za pomocą ngx-material-file-input dla frontonu i Firebase dla back-endu. Dokładniej C głośny schowek dla Firebase dla zaplecza w połączeniu z Cloud Firestore. Poniżej przykład, który ogranicza plik do nie więcej niż 20 MB i akceptuje tylko niektóre rozszerzenia plików. Używam również Cloud Firestore do przechowywania linków do przesłanych plików, ale możesz to pominąć.

contact.component.html

<mat-form-field>
  <!--
    Accept only files in the following format: .doc, .docx, .jpg, .jpeg, .pdf, .png, .xls, .xlsx. However, this is easy to bypass, Cloud Storage rules has been set up on the back-end side.
  -->
  <ngx-mat-file-input
    [accept]="[
      '.doc',
      '.docx',
      '.jpg',
      '.jpeg',
      '.pdf',
      '.png',
      '.xls',
      '.xlsx'
    ]"
    (change)="uploadFile($event)"
    formControlName="fileUploader"
    multiple
    aria-label="Here you can add additional files about your project, which can be helpeful for us."
    placeholder="Additional files"
    title="Additional files"
    type="file"
  >
  </ngx-mat-file-input>
  <mat-icon matSuffix>folder</mat-icon>
  <mat-hint
    >Accepted formats: DOC, DOCX, JPG, JPEG, PDF, PNG, XLS and XLSX,
    maximum files upload size: 20 MB.
  </mat-hint>
  <!--
    Non-null assertion operators are required to let know the compiler that this value is not empty and exists.
  -->
  <mat-error
    *ngIf="contactForm.get('fileUploader')!.hasError('maxContentSize')"
  >
    This size is too large,
    <strong
      >maximum acceptable upload size is
      {{
        contactForm.get('fileUploader')?.getError('maxContentSize')
          .maxSize | byteFormat
      }}</strong
    >
    (uploaded size:
    {{
      contactForm.get('fileUploader')?.getError('maxContentSize')
        .actualSize | byteFormat
    }}).
  </mat-error>
</mat-form-field>

contact.component.ts (część walidatora rozmiaru)

import { FileValidator } from 'ngx-material-file-input';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';

/**
 * @constructor
 * @description Creates a new instance of this component.
 * @param  {formBuilder} - an abstraction class object to create a form group control for the contact form.
 */
constructor(
  private angularFirestore: AngularFirestore,
  private angularFireStorage: AngularFireStorage,
  private formBuilder: FormBuilder
) {}

public maxFileSize = 20971520;
public contactForm: FormGroup = this.formBuilder.group({
    fileUploader: [
      '',
      Validators.compose([
        FileValidator.maxContentSize(this.maxFileSize),
        Validators.maxLength(512),
        Validators.minLength(2)
      ])
    ]
})

contact.component.ts (część do przesyłania plików)

import { AngularFirestore } from '@angular/fire/firestore';
import {
  AngularFireStorage,
  AngularFireStorageReference,
  AngularFireUploadTask
} from '@angular/fire/storage';
import { catchError, finalize } from 'rxjs/operators';
import { throwError } from 'rxjs';

public downloadURL: string[] = [];
/**
* @description Upload additional files to Cloud Firestore and get URL to the files.
   * @param {event} - object of sent files.
   * @returns {void}
   */
  public uploadFile(event: any): void {
    // Iterate through all uploaded files.
    for (let i = 0; i < event.target.files.length; i++) {
      const randomId = Math.random()
        .toString(36)
        .substring(2); // Create random ID, so the same file names can be uploaded to Cloud Firestore.

      const file = event.target.files[i]; // Get each uploaded file.

      // Get file reference.
      const fileRef: AngularFireStorageReference = this.angularFireStorage.ref(
        randomId
      );

      // Create upload task.
      const task: AngularFireUploadTask = this.angularFireStorage.upload(
        randomId,
        file
      );

      // Upload file to Cloud Firestore.
      task
        .snapshotChanges()
        .pipe(
          finalize(() => {
            fileRef.getDownloadURL().subscribe((downloadURL: string) => {
              this.angularFirestore
                .collection(process.env.FIRESTORE_COLLECTION_FILES!) // Non-null assertion operator is required to let know the compiler that this value is not empty and exists.
                .add({ downloadURL: downloadURL });
              this.downloadURL.push(downloadURL);
            });
          }),
          catchError((error: any) => {
            return throwError(error);
          })
        )
        .subscribe();
    }
  }

Storage.rules

rules_version = '2';
service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
        allow read; // Required in order to send this as attachment.
      // Allow write files Firebase Storage, only if:
      // 1) File is no more than 20MB
      // 2) Content type is in one of the following formats: .doc, .docx, .jpg, .jpeg, .pdf, .png, .xls, .xlsx.
      allow write: if request.resource.size <= 20 * 1024 * 1024
        && (request.resource.contentType.matches('application/msword')
        || request.resource.contentType.matches('application/vnd.openxmlformats-officedocument.wordprocessingml.document')
        || request.resource.contentType.matches('image/jpg')
        || request.resource.contentType.matches('image/jpeg')
        || request.resource.contentType.matches('application/pdf')
                || request.resource.contentType.matches('image/png')
        || request.resource.contentType.matches('application/vnd.ms-excel')
        || request.resource.contentType.matches('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'))
    }
  }
}
Daniel Danielecki
źródło
2
Wyglądaj świetnie, ale dlaczego potrzebujesz toString()deklaracji contactForm?
trungk18,
1
@ trungk18 sprawdź to jeszcze raz, i masz rację, to toString()jest bezużyteczne, zredagowałem moją odpowiedź. Dla tych, którzy przeczytaliby ten komentarz, na końcu fileUploaderw contact.component.ts miałem ])].toString()}). Teraz to po prostu: ])]}).
Daniel Danielecki
5
  1. HTML

    <div class="form-group">
      <label for="file">Choose File</label><br /> <input type="file" id="file" (change)="uploadFiles($event.target.files)">
    </div>

    <button type="button" (click)="RequestUpload()">Ok</button>
  1. Plik ts
public formData = new FormData();
ReqJson: any = {};

uploadFiles( file ) {
        console.log( 'file', file )
        for ( let i = 0; i < file.length; i++ ) {
            this.formData.append( "file", file[i], file[i]['name'] );
        }
    }

RequestUpload() {
        this.ReqJson["patientId"] = "12"
        this.ReqJson["requesterName"] = "test1"
        this.ReqJson["requestDate"] = "1/1/2019"
        this.ReqJson["location"] = "INDIA"
        this.formData.append( 'Info', JSON.stringify( this.ReqJson ) )
            this.http.post( '/Request', this.formData )
                .subscribe(( ) => {                 
                });     
    }
  1. Backend Spring (plik Java)

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile;

@Controller
public class Request {
    private static String UPLOADED_FOLDER = "c://temp//";

    @PostMapping("/Request")
    @ResponseBody
    public String uploadFile(@RequestParam("file") MultipartFile file, @RequestParam("Info") String Info) {
        System.out.println("Json is" + Info);
        if (file.isEmpty()) {
            return "No file attached";
        }
        try {
            // Get the file and save it somewhere
            byte[] bytes = file.getBytes();
            Path path = Paths.get(UPLOADED_FOLDER + file.getOriginalFilename());
            Files.write(path, bytes);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "Succuss";
    }
}

Musimy utworzyć folder „temp” na dysku C, a następnie ten kod wydrukuje Json w konsoli i zapisze przesłany plik w utworzonym folderze

Shafeeq Mohammed
źródło
Jak odzyskujemy ten plik? Czy masz jakieś wskazówki na ten temat?
Siddharth Choudhary
Również mój serwer wiosenny działa na 8080, a Angular's na 3000. Teraz, gdy oznaczam server_url jako localhost: 8080 / api / uploadForm mówi, że cors jest niedozwolony!
Siddharth Choudhary
byte [] bytes = file.getBytes (); da strumień bajtów .. możesz przekonwertować go do pliku, dla problemu cors możesz znaleźć rozwiązanie w google
Shafeeq Mohammed
5

Najpierw musisz skonfigurować HttpClient w swoim projekcie Angular.

Otwórz plik src / app / app.module.ts, zaimportuj HttpClientModule i dodaj go do tablicy importów modułu w następujący sposób:

import { BrowserModule } from '@angular/platform-browser';  
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';  
import { AppComponent } from './app.component';  
import { HttpClientModule } from '@angular/common/http';

@NgModule({  
  declarations: [  
    AppComponent,  
  ],  
  imports: [  
    BrowserModule,  
    AppRoutingModule,  
    HttpClientModule  
  ],  
  providers: [],  
  bootstrap: [AppComponent]  
})  
export class AppModule { }

Następnie wygeneruj komponent:

$ ng generate component home

Następnie wygeneruj usługę przesyłania:

$ ng generate service upload

Następnie otwórz plik src / app / upload.service.ts w następujący sposób:

import { HttpClient, HttpEvent, HttpErrorResponse, HttpEventType } from  '@angular/common/http';  
import { map } from  'rxjs/operators';

@Injectable({  
  providedIn: 'root'  
})  
export class UploadService { 
    SERVER_URL: string = "https://file.io/";  
    constructor(private httpClient: HttpClient) { }
    public upload(formData) {

      return this.httpClient.post<any>(this.SERVER_URL, formData, {  
         reportProgress: true,  
         observe: 'events'  
      });  
   }
}

Następnie otwórz plik src / app / home / home.component.ts i zacznij od dodania następujących importów:

import { Component, OnInit, ViewChild, ElementRef  } from '@angular/core';
import { HttpEventType, HttpErrorResponse } from '@angular/common/http';
import { of } from 'rxjs';  
import { catchError, map } from 'rxjs/operators';  
import { UploadService } from  '../upload.service';

Następnie zdefiniuj zmienne fileUpload i pliki i wstrzyknij UploadService w następujący sposób:

@Component({  
  selector: 'app-home',  
  templateUrl: './home.component.html',  
  styleUrls: ['./home.component.css']  
})  
export class HomeComponent implements OnInit {
    @ViewChild("fileUpload", {static: false}) fileUpload: ElementRef;files  = [];  
    constructor(private uploadService: UploadService) { }

Następnie zdefiniuj metodę uploadFile ():

uploadFile(file) {  
    const formData = new FormData();  
    formData.append('file', file.data);  
    file.inProgress = true;  
    this.uploadService.upload(formData).pipe(  
      map(event => {  
        switch (event.type) {  
          case HttpEventType.UploadProgress:  
            file.progress = Math.round(event.loaded * 100 / event.total);  
            break;  
          case HttpEventType.Response:  
            return event;  
        }  
      }),  
      catchError((error: HttpErrorResponse) => {  
        file.inProgress = false;  
        return of(`${file.data.name} upload failed.`);  
      })).subscribe((event: any) => {  
        if (typeof (event) === 'object') {  
          console.log(event.body);  
        }  
      });  
  }

Następnie zdefiniuj metodę uploadFiles (), której można użyć do przesłania wielu plików obrazów:

private uploadFiles() {  
    this.fileUpload.nativeElement.value = '';  
    this.files.forEach(file => {  
      this.uploadFile(file);  
    });  
}

Następnie zdefiniuj metodę onClick ():

onClick() {  
    const fileUpload = this.fileUpload.nativeElement;fileUpload.onchange = () => {  
    for (let index = 0; index < fileUpload.files.length; index++)  
    {  
     const file = fileUpload.files[index];  
     this.files.push({ data: file, inProgress: false, progress: 0});  
    }  
      this.uploadFiles();  
    };  
    fileUpload.click();  
}

Następnie musimy utworzyć szablon HTML naszego interfejsu do przesyłania obrazów. Otwórz plik src / app / home / home.component.html i dodaj następującą treść:

       <div style="text-align:center; margin-top: 100px; ">

        <button mat-button color="warn" (click)="onClick()">  
            Upload  
        </button>  
    <input type="file" #fileUpload id="fileUpload" name="fileUpload" multiple="multiple" accept="image/*" style="display:none;" /></div>

Sprawdź ten samouczek i ten post

Ahmed Bouchefra
źródło
4

Kompletny przykład przesyłania plików za pomocą Angulara i nodejsa (ekspresowego)

Kod HTML

            <div class="form-group">
                <label for="file">Choose File</label><br/>
                <input type="file" id="file" (change)="uploadFile($event.target.files)" multiple>
            </div>

Kod części TS

uploadFile(files) {
    console.log('files', files)
        var formData = new FormData();

    for(let i =0; i < files.length; i++){
      formData.append("files", files[i], files[i]['name']);
        }

    this.httpService.httpPost('/fileUpload', formData)
      .subscribe((response) => {
        console.log('response', response)
      },
        (error) => {
      console.log('error in fileupload', error)
       })
  }

Kod węzła Js

fileUpload kontroler API

function start(req, res) {
fileUploadService.fileUpload(req, res)
    .then(fileUploadServiceResponse => {
        res.status(200).send(fileUploadServiceResponse)
    })
    .catch(error => {
        res.status(400).send(error)
    })
}

module.exports.start = start

Prześlij usługę za pomocą multera

const multer = require('multer') // import library
const moment = require('moment')
const q = require('q')
const _ = require('underscore')
const fs = require('fs')
const dir = './public'

/** Store file on local folder */
let storage = multer.diskStorage({
destination: function (req, file, cb) {
    cb(null, 'public')
},
filename: function (req, file, cb) {
    let date = moment(moment.now()).format('YYYYMMDDHHMMSS')
    cb(null, date + '_' + file.originalname.replace(/-/g, '_').replace(/ /g,     '_'))
}
})

/** Upload files  */
let upload = multer({ storage: storage }).array('files')

/** Exports fileUpload function */
module.exports = {
fileUpload: function (req, res) {
    let deferred = q.defer()

    /** Create dir if not exist */
    if (!fs.existsSync(dir)) {
        fs.mkdirSync(dir)
        console.log(`\n\n ${dir} dose not exist, hence created \n\n`)
    }

    upload(req, res, function (err) {
        if (req && (_.isEmpty(req.files))) {
            deferred.resolve({ status: 200, message: 'File not attached', data: [] })
        } else {
            if (err) {
                deferred.reject({ status: 400, message: 'error', data: err })
            } else {
                deferred.resolve({
                    status: 200,
                    message: 'File attached',
                    filename: _.pluck(req.files,
                        'filename'),
                    data: req.files
                })
            }
        }
    })
    return deferred.promise
}
}
Rohit Parte
źródło
1
skąd pochodzi usługa httpService?
James
@James httpService to moduł kątowy HTTP do wykonywania połączeń HTTP z serwerem. Możesz użyć dowolnej usługi http.import {HttpClientModule} z „@ angular / common / http”;
Rohit Parte
2

Spróbuj tego

zainstalować

npm install primeng --save

Import

import {FileUploadModule} from 'primeng/primeng';

HTML

<p-fileUpload name="myfile[]" url="./upload.php" multiple="multiple"
    accept="image/*" auto="auto"></p-fileUpload>
Vignesh
źródło
1
Zmęczyłem się powyższym przykładem. Ale dostaję ./upload.php nie znaleziono.
Sandeep Kamath,
2
Powinieneś podać swój adres URL tam, gdzie powinien zostać załadowany zamiast upload.php @sandeep kamath
Vignesh 20.04.2018
1
@Vignesh dziękuję za odpowiedź. Ale odkryłem, że nie podam w ogóle atrybutu url, aby załadować plik, powinien być domyślny.
Sandeep Kamath,
1
Czy możesz wyjaśnić, w jaki sposób możemy otrzymać plik w php, jeśli robimy to w tej metodzie.
Shaikh Arbaaz,
2

W Angular 7/8/9

Link źródłowy

wprowadź opis zdjęcia tutaj

Za pomocą formularza Bootstrap

<form>
    <div class="form-group">
        <fieldset class="form-group">

            <label>Upload Logo</label>
            {{imageError}}
            <div class="custom-file fileInputProfileWrap">
                <input type="file" (change)="fileChangeEvent($event)" class="fileInputProfile">
                <div class="img-space">

                    <ng-container *ngIf="isImageSaved; else elseTemplate">
                        <img [src]="cardImageBase64" />
                    </ng-container>
                    <ng-template #elseTemplate>

                        <img src="./../../assets/placeholder.png" class="img-responsive">
                    </ng-template>

                </div>

            </div>
        </fieldset>
    </div>
    <a class="btn btn-danger" (click)="removeImage()" *ngIf="isImageSaved">Remove</a>
</form>

W klasie komponentów

fileChangeEvent(fileInput: any) {
    this.imageError = null;
    if (fileInput.target.files && fileInput.target.files[0]) {
        // Size Filter Bytes
        const max_size = 20971520;
        const allowed_types = ['image/png', 'image/jpeg'];
        const max_height = 15200;
        const max_width = 25600;

        if (fileInput.target.files[0].size > max_size) {
            this.imageError =
                'Maximum size allowed is ' + max_size / 1000 + 'Mb';

            return false;
        }

        if (!_.includes(allowed_types, fileInput.target.files[0].type)) {
            this.imageError = 'Only Images are allowed ( JPG | PNG )';
            return false;
        }
        const reader = new FileReader();
        reader.onload = (e: any) => {
            const image = new Image();
            image.src = e.target.result;
            image.onload = rs => {
                const img_height = rs.currentTarget['height'];
                const img_width = rs.currentTarget['width'];

                console.log(img_height, img_width);


                if (img_height > max_height && img_width > max_width) {
                    this.imageError =
                        'Maximum dimentions allowed ' +
                        max_height +
                        '*' +
                        max_width +
                        'px';
                    return false;
                } else {
                    const imgBase64Path = e.target.result;
                    this.cardImageBase64 = imgBase64Path;
                    this.isImageSaved = true;
                    // this.previewImagePath = imgBase64Path;
                }
            };
        };

        reader.readAsDataURL(fileInput.target.files[0]);
    }
}

removeImage() {
    this.cardImageBase64 = null;
    this.isImageSaved = false;
}
Code Spy
źródło