Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
1k views

My question is how to create a new file upload button/input with add and remove button in Angular 12. we should be able to add as many upload button/input we want.
BruceWayne's user avatar
0 votes
1 answer
46 views

I've looked at questions posted under this first tag but I could not find anything that matches what I am trying to do. Is there a way to create multiple instances of the uploader in the same page? I ...
ODelibalta's user avatar
  • 2,274
0 votes
2 answers
79 views

I am using protractor for a Node.js application with Chrome, in one test case I have to upload image and then click add/update button. The test case is working perfectly on my machine, but on ...
farhanziaf's user avatar
0 votes
2 answers
880 views

When I'm testing my API from postman I can view my images but from my angular application, I cannot able to view images. There is no error in the console. below is my code which I tried. Asp.net web ...
Mervin's user avatar
  • 35
0 votes
1 answer
3k views

I'm trying to get file uploads to work using the ngx-file-drop module. This is what I have so far: <ngx-file-drop (onFileDrop)="dropped($event)" [showBrowseBtn]="true"> &...
Troy's user avatar
  • 22k
1 vote
0 answers
27 views

i have to update an application built on AngularJS (v1.5.9) One function is to let the possibilities to Update Video (it's actually working with picture) Everything is Ok With Picture like that : <...
Sdupont's user avatar
  • 11
1 vote
0 answers
769 views

I am using a .NET 5 MVC web application. To allow file uploading, I am using the ng-file-upload component with chunks settings (resumeChunkSize: 5000). In ASP.NET 4 I used the ...
sag3ll0's user avatar
  • 23
-1 votes
1 answer
483 views

trying to create an attachment to the associating model, but have an error, do not know how to debug it firefox says 'forEach' called on an object that does not implement interface FormData; chrome - ...
ABA's user avatar
  • 59
1 vote
1 answer
1k views

I am facing the issue while using ng-file-upload in angularjs. Even though the uploading is in process in backend (node-js code), chrome times out after 2 minutes and throws net::ERR_EMPTY_RESPONSE. I ...
Ipsita Bhattacharyya's user avatar
0 votes
1 answer
1k views

app.module.ts ngOnInit() { this.userForm = this.fb.group({ firstName : ['', Validators.required], gender : ['', Validators.required], maritalStatus : ['', Validators.required], lastName : [''...
Shubham Sharma's user avatar
0 votes
2 answers
1k views

I am wondering, if it is possible to read the Exif metadata that is attached to image files to read the geolocation using the ng-file-upload library. There are options (e.g. ngf-fix-orientation) that ...
iwan_gu's user avatar
  • 43
2 votes
0 answers
441 views

Html file : code for selecting mp3 file <div class="col-xs-12 col-sm-12"> <label> Audio</label> <input class="center" id="musicFile" type="file" ngf-select ng-model="...
Hiren More's user avatar
-1 votes
1 answer
149 views

I cannot get a select (drop-down menu) to update with a API response from ngfileupload (sheet names in the file uploaded). I can see the sheet names in what is returned in the browser but cannot get ...
MortenNielsen's user avatar
2 votes
1 answer
138 views

I'm facing issue at the time of file upload. If my file size is more than 1gb. How to fix that issue?
Kumar's user avatar
  • 68
-4 votes
1 answer
898 views

I have used HTML to upload a file to a web location. <input name="fileInput" type="file" fileinput="files" ngf-select ng-model="picFile1 "accept="image/*" NGF-max-size="2MB"required ...
leo wang's user avatar
1 vote
1 answer
193 views

I'm using ng-file-upload plugin to upload files and I'd like to select files with specific extension. In my case it's .info.system.yaml extension. I've looked through examples and see only short ...
blackhard's user avatar
  • 572
1 vote
1 answer
1k views

Is there anyway that i can restrict the size of the file getting uploaded? I use, <div> <input id="singleFile" type="file" [fileUploadInputFor]="fileUploadQueue" /> <mat-file-...
A Coder's user avatar
  • 3,076
0 votes
0 answers
360 views

I'm using angularjs and this library to upload files. When a file is selected, I call a function. When a file's size is greater than the limit I try to clear the input field in the function. But when ...
Abhi's user avatar
  • 1,574
0 votes
1 answer
658 views

I'm developing an application wherein the requirement is to upload the file to Azure blob storage. I tried the azure-blob-storage-service plugin which is present in the angular nuget manager. Can ...
Mohammed Salaam's user avatar
0 votes
1 answer
2k views

In my Cordova project I rely on a third party dependency that uses ng-file-upload in order to upload files. It works on iOS but not on Android as reported in this issue on their Github. The old ...
Gabe's user avatar
  • 6,399
0 votes
1 answer
328 views

ng-file-upload deletes existing files that have been uploaded before when the user tries to upload again. This may cause duplicate file uploads if the user changes their mind about replacing the file, ...
Wouter Vos's user avatar
0 votes
0 answers
203 views

I'm trying to upload a large file - 6GB to S3. The S3 file size limit is 15GB. When uploading the 6GB file the request fails with the response null in the error callback. I'm able to successfully ...
neridaj's user avatar
  • 2,203
1 vote
1 answer
90 views

Can somebody point me to an example of doing multipart upload using ng-file-upload. Also if the upload can be paused/resumed (like when the internet goes down or user puts the machine to sleep). ...
user4848830's user avatar
0 votes
0 answers
773 views

I am working on a angularjs / nodejs (express) stack. In this project, I have to upload large binary file (~150mb) from the client to server. Due to a company proxy limitation, we have to chunk the ...
Antoine Guittet's user avatar
0 votes
1 answer
2k views

I try to upload a file on local MongoDB server via a web application in the following: const express = require("express"); const bodyParser = require('body-parser'); const path = require('path'); ...
Payam Ebadi's user avatar
5 votes
3 answers
5k views

I am using Cypress to use my application and encounter a problem by sending an uploaded file to the backend. It sends an empty FormData. I am using the code found here https://github.com/cypress-io/...
Jonas KISTLER's user avatar
0 votes
1 answer
88 views

I am working with ionic3. I want to bind pdfFile as a fileobj: Multipart Data Then username: "abc" and other 2 3 fields.How can I achieve This ? Can I use input type file or any other thing ?
Bhavin Padiya's user avatar
0 votes
0 answers
210 views

I am working with ng-file-upload plugin and works for me. but as per my requirement I should not use the plugin in my code or folder and it should in node modules. How can I use ng-file-upload plugin ...
Bala's user avatar
  • 13
3 votes
2 answers
8k views

I'm using "ngx-file-drop" on Angular 6. <file-drop headertext="Drop files here" (onFileDrop)="dropped($event)" (onFileOver)="fileOver($event)" (onFileLeave)="fileLeave($event)" ...
Shubham Azad's user avatar
0 votes
1 answer
66 views

I have the code below and i would like to, if the user desires, to show the pdf that was added (using the input element), in a new tab or open the file. Is this even possible? <div class="...
João Santos's user avatar
0 votes
1 answer
2k views

I´m trying upload multiples images using ng-file-upload with Spring Boot. The problem is that angularjs send files in wrong order,no sequence, shuffled. Select images 0 1 2 3 4 5 and when send need ...
Braian Silva's user avatar
  • 2,214
1 vote
1 answer
1k views

I am using a simple file upload as below: <button type="file" ngf-select ng-model="fileData" ng-change="fileChanged(fileData)" name="file" required > Select File </button> ...
aman's user avatar
  • 6,292
1 vote
1 answer
3k views

I am using ng-file-upload to upload a text file. <span type="file" class="btn" ngf-select ng-model="fileUser" name="fileUser" ngf-pattern="'.txt,.TXT'" ngf-accept="'text/plain'"> Select File &...
Sreeragh A R's user avatar
  • 3,041
3 votes
2 answers
6k views

I'm using "file-drop" tag to drag and drop image on Angular 6. <file-drop headertext="{{adCrud.uploadMediaText}}" (onFileDrop)="dropped($event)" (onFileOver)="fileOver($event)" ...
Hyder Nadeem's user avatar
0 votes
1 answer
885 views

Using angularjs 1.3 and C# .net core web api I have a ng-file-upload which being used to upload file. When the upload method is called I want to pass in an extra array of some data to the upload ...
aman's user avatar
  • 6,292
0 votes
0 answers
86 views

I have a registration form which asks for details such as firstname, lastname, email, etc and it asks for uploading a pdf file at the end. I am not using any database, I am storing all the details in ...
TheUnKnown's user avatar
0 votes
1 answer
2k views

I am clicking on a upload button which opens up a windows file selector. I am not able to write the path to a file in that File Selector dialog using protractor. I tried copying the text to the ...
simond's user avatar
  • 814
5 votes
3 answers
7k views

I am trying to upload files through my web app using the following code. View: <form name="uploadForm" class="form-horizontal col-sm-12"> <div class="col-sm-4"> <input ...
Barry Piccinni's user avatar
0 votes
1 answer
561 views

Need help with uploading photo and saving it to local folder using node.js, express and angular for front end. Form is done and saving new user information to mongoose works fine. Need to add the ...
arjunkm's user avatar
  • 479
0 votes
1 answer
1k views

I am using spring 4.3.1 and I am going to upload file using ng-file-upload library. this is my javascript code and when I connect the javascript code to php server, it works well. var promise ...
alexKruts's user avatar
0 votes
0 answers
280 views

I'm trying to add a file-upload control into a section (each cell of this section have different parameter). I use input file upload. But when i generate section with ng-repeat, it doesn't work at all,...
jiten's user avatar
  • 1
0 votes
1 answer
517 views

I used the code below to upload Image and username to server. it works fine. Now I want to return the username and filename in a console but it says this request has no response data available. I ...
chinazaike's user avatar
3 votes
2 answers
1k views

I am trying to pass the attached file information to the spring controller from agularjs controller. I am facing issues while passing the information from angularjs to spring controller, it is ...
nan's user avatar
  • 61
0 votes
0 answers
86 views

I'm using AngularJS 1.6 to send a file to the server. The server uses Multer to read the files and I am providing a secure access token on each file uploaded. The project uses the ng-file-upload ...
DunderheadDummy's user avatar
-1 votes
1 answer
369 views

I tried following this link https://ciphertrick.com/2015/12/07/file-upload-with-angularjs-and-nodejs/ but got error Node version is 4.4.7, modulerr error in ngFileUpload For file upload in app.js ...
Janani S's user avatar
1 vote
1 answer
644 views

In our project we have a requirement like , while user is navigating across the pages (route change) we need to retain upload process behind the scenes . But as scope is getting destroyed while ...
user3679514's user avatar
3 votes
2 answers
3k views

I want to upload a file as part of a property to an object in a form. I have researched on this but most of the documentations are referring to services which only handle a file. In my scenario I have ...
Efron A.'s user avatar
  • 353
2 votes
2 answers
6k views

I am writing tests for my AngularJS application using protractor and jasmine. I am testing file upload case using the code below: const fileElem = element(by.css('input[type="file"]')); fileElem....
Vadym Shashkov's user avatar
0 votes
1 answer
2k views

I need to get the digest of an uploaded file in my AngularJS app, but the result digest is different from the file digest I get with bash. I started using jshashes, but when I saw that the resultant ...
marc's user avatar
  • 537
1 vote
2 answers
2k views

I have blob url for image and want to display it. One method I tried is by using createObjectURL(). $scope.preview = function(path) { //path is 'data:image/jpeg;base64,/9j/...
YaSh Chaudhary's user avatar

1
2 3 4 5
10