Ajax返回的数据大小

Been searching for some info on how much data an ajax call can receive/handle and haven't found anything.

The scenario is a common one: a call to the back-end to retrieve some rows from a database. The call can return any number of rows. The question is, how much data can I safely return to the front end?

Hope someone could shed some light on the subject.

The user can digest far fewer rows than you can safely return. Either page the data for the user's benefit or provide searching/filtering options.

For a real answer, it's going to vary considerably for each browser, especially for mobile users, and depend a lot on each user's bandwidth and hardware. This is one of those things where if you have to ask, you're doing it wrong.