Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将积分器写入 Pauy 支付系统。当我用状态命令来回应我时。当我收到这个时,我必须使用
header("HTTP/1.1 200 OK");
停止payu的响应。
但我不知道如何在 cakephp 2.x 控制器中使用它?
我尝试:
$this->response->header("HTTP/1.1", "200 OK");
和
$this->response->statusCode(200);
但这是行不通的。
您尝试的应该在控制器中工作,即:
但是,这仍会按照默认行为在 2.x 中加载该方法的视图。如果您想停止默认行为而只返回 200 代码,请尝试以下操作:
return $this->response;
在您设置了状态代码之后(使用上面的行)。