All Questions
Tagged with angular-file-upload javascript
60 questions
0
votes
0
answers
52
views
Redirecting to a new page after loading a json file does not work
I'm working on a project with Angular. I would like to let the user load a json file that was previously saved via my site. After the data has been successfully loaded, the user should then be ...
0
votes
2
answers
4k
views
Multiple file upload in Angular appending only one file
I'm facing a problem with multiple files upload in my Angular application. Here I am trying to append the multiple files in onSelectedFileMultiple($event) but only one file is selecting and if I ...
0
votes
1
answer
7k
views
Import excel in angular 7 and save into database using node js
I have a page to uploaded excel
<div class="form-group">
<label>Select file to upload.</label>
<input type="file" class="form-control" (change)="onFileChange($event);"...
1
vote
0
answers
110
views
How to get dynamic status of file upload in angular ui from java rest service
As part of my requirement need to show dynamic progress bar about uploaded file to user. I am using Java rest service for placing file into a separate location. Is there any way to get upload% from ...
0
votes
1
answer
3k
views
Remove Content-Disposition and Content-Type from request body using angular-file-upload
I'm using https://github.com/nervgh/angular-file-upload for my file uploads.
However, I see that the upload body is like this -
------WebKitFormBoundaryXjCfky7muJb4rrZu
Content-Disposition: form-...
0
votes
0
answers
42
views
Dynamic file upload in anugularjs
In my current project I need to edit a pdf document. I have implemented editing the pdf file (using canvas, fabricjs) now the challenge is to update the pdf file on the server with the edited pdf ...
0
votes
1
answer
642
views
How to detect file name exist on upload in Angular file manager
I'm using Angular File Manager In My current Angularjs App.
I want to show an error(like: file name exist) to user when upload a file with name exist in a directory.
$scope.uploadFiles = function () ...
0
votes
0
answers
794
views
angular 2 file upload using form data
I want to implement a file upload feature in my angular2 project. I want to restrict user to upload only files of certain type: .pdf, .doc and .docx.
The following is my code for fileChange:
...
0
votes
2
answers
514
views
Angular 1.x typescript "TypeError: "Uploader" must be an instance of FileUploader"
I have been trying to use the angular-file-upload here https://github.com/nervgh/angular-file-upload with typescript, and I keep getting this error:
TypeError: "Uploader" must be an instance of ...
0
votes
1
answer
530
views
Can ffprobe accept something other than a file path to retrieve video metadata?
I am trying to grab video metadata off a user's upload. I am using angular-file-upload and FileReader to upload the file. I would like to use ffprobe to grab the metadata, but it seems to only accept ...
0
votes
1
answer
101
views
Angular4 File upload with fom submission.?
This is my .html file
<form [formGroup]="complexForm" (ngSubmit)="submitForm(complexForm.value)">
<div class="row">
<div class="col-md-12 col-12">
<label&...
2
votes
0
answers
213
views
AngularJS: Multiple file upload window
I need a separate upload window to show queue/progress as shown in the image below.
I am using this module to upload multiple files. Find the following image for desired output.
0
votes
1
answer
2k
views
File upload not working in AngularJS
Here's my code in my controller file that is suppose to grab the values of each input element (name, price, date, image) and push it into an array of objects...
$scope.addBook = function(name, price, ...
0
votes
1
answer
1k
views
AngularJS $http POST turn into GET
I have a route
Route::post('/updateLogo', 'CaptivePortalController@updateLogo');
Then I make a POST here
$http({
method: 'POST', <----- I did a POST
url: '/updateLogo',
headers: { '...
0
votes
0
answers
377
views
Angular File upload filtering Kml files?
i am trying to use angular file upload to filter and make user upload kml files only (map) . i have a working code where i use picture files
this.uploader.filters.push({
name: 'imageFilter',
...