My file is in the following format in Angular end:
let fi = this.fileInput.nativeElement;
let fileToUpload = fi.files[0];
let input = new FormData();
input.append("file", fileToUpload);
return this.http.post(uploadUrl, input);
And my API in ASP.NET CORE is:
[HttpPost]
public IActionResult Post([FromBody]JObject objData)
{
dynamic jsonData = objData;
JObject FileJson = jsonData.jsonFile; // JSON File
// Please suggest how to store the file in Folder
}
Thanks in advance
I have figured it out. So I am posting the answer so that it can help out others.
This is my complete code in ASP.NET Core API Controller :
This in my Image Upload service in Angular:
This is my documentSubmit function in Angular component :
import { UploadService } from './Upload.service';
constructor(private http: Http,private uploadService: UploadService) { }
@ViewChild("fileInput") fileInput;
And this is my File Input HTML :
<input #fileInput type="file" name="document" [(ngModel)]="document" />