Skip to content

Latest commit

 

History

History
executable file
·
8 lines (4 loc) · 327 Bytes

request-parameters.md

File metadata and controls

executable file
·
8 lines (4 loc) · 327 Bytes

Request Parameters

"Sometimes", we will need to access the parameters sent by the request. So the request object, that is being passed to the controller contains a property called params .

This object is an associative array with all parameters (query, body, etc.) as key => value pair.

That's it. That's the tea.