$this->request->getPost("name");
doesn't return the post value in a controller. However, I can get the value using:
parse_str(file_get_contents("php://input"), $data);
$name = $data["name"];
Why $this->request->getPost("name") doesn't return the correct value? Thanks! Carlos