Say I have a 10mb CSV file I want to load into a JavaScript app using AJAX (or other). Is it possible to read from it during the loading?
So if 50% of it was loaded, is it possible to access that first 50% of the file?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I should be possible, since the file is read one row at a time, you just need to make a function that will loop through the rows already read and display the information.