2
I’m making a post request via $http at the angle, and when my back-end returns a very large json string it doesn’t load, it makes me wonder if there are any settings that limit a request that returns a very large string.
My back-end is in PHP.
2
I’m making a post request via $http at the angle, and when my back-end returns a very large json string it doesn’t load, it makes me wonder if there are any settings that limit a request that returns a very large string.
My back-end is in PHP.
Browser other questions tagged php angularjs
You are not signed in. Login or sign up in order to post.
is a
HTTP/GET
?– Sorack
You’ve seen post_max_size in PHP.ini?
– Sósthenes Neto
Sorry for the ignorance, but it’s a POST, and as a result to this post I do, which is nothing more than passing any id to my back-end, it generates a "mega string" and returns to my front-end treat.
– Rafael Anderson lobo
What size are we talking about, in KB?
– Sorack
8947 characters. I don’t know exactly how many KB there are.
– Rafael Anderson lobo
What happens is that Angularjs is not good for rendering very large lists with ng-repeat, tries to paginate your data or use Infinite scrolling.
– Estevo Beethoven Lacerda Vasqu