File Upload in Angular 4

前端 未结 6 585
我在风中等你
我在风中等你 2021-02-04 14:26

when I\'m trying to install \"npm install ng2-file-upload --save\" in my angular 4 application it throws

UNMET PEER DEPENDENCY @4.1.0
UNMET PEER DEPENDENCY          


        
6条回答
  •  星月不相逢
    2021-02-04 14:49

    Upload images in Angular 4 without a plugin This is the article that might be worth trying. Upload images in Angular 4 without a plugin

    It emphasize on these points:

    1. Using the .request() method instead of .post
    2. Sending formData straight into the body.
    3. Customizing header items and constructing a new RequestOptions object.
    4. In order to send formData with image content you must remove the Content-Type header.

提交回复
热议问题