How to send a very large string to the php server with javascript asynchronously

-1

How can I send large strings to the server?

I would like to read a table with enough data, take the html and send it to the server. How can I do that?

    
asked by Darwin Zamora 23.11.2018 в 21:24
source

1 answer

0

You can use paging to not request all the data at one time, but for small groups. Some framworks APIs support default paging.

  

By performance I do not think it is good to send large amounts of data to the client, it is better to leave heavy processing jobs to the server and that the client receives a set of data already processed.

    
answered by 23.11.2018 в 22:14