I have multiple json files with format like this:
{
"title" : "abc",
"desc" : "pqr",
"img" : "mno",
"isExpertApproved" : "true"
}
I just want to add one button in my website where I can upload the file and without storing it anywhere I want to read the data of that file and I also want to store that data into database using javascript.
Is there any way for this? Thank you in advance.