Editor node.js - Error: PayloadTooLargeError: too many parameters
Editor node.js - Error: PayloadTooLargeError: too many parameters
I'm using Editor with node.js. I have the select enabled ... and when I select 40 or above records to remove from the table ... I'm getting an error:
FE: A system error has occurred (More information).
BE: PayloadTooLargeError: request entity too large
I want to display 250 records per pagination. How can I handle 250 records at once and delete them with the select option?!
Is this a node.js issue and do I need to alter e.g. https://stackoverflow.com/questions/36716311/node-js-error-too-many-parameters-error-while-uploading-bulk-data ?
This question has an accepted answers - jump to answer
Answers
Correct - alter the number of parameters that NodeJS is allowing (if you are using body-parser, then as the SO post you linked to suggests, change the limit using the API shown there).
Allan
Thanks. With using e.g.
... it works again. Rgds