Welcome Guest, Not a member yet? Register   Sign In
codeigniter 4 "need define" in the model this data output->set_header
#1
Bug 
(This post was last modified: 01-14-2021, 03:49 PM by yuma2020.)

Hello people, as you will see, I am interested in defining in the constructor the following field:
this example is CI3
PHP Code:
$this->output->set_header('Pragma: no-cache'); 
I would appreciate knowing how you can help me resolve this situation because there are currently no repositories and information about it.
I would also add that there is not enough information in the user help panes so that the integration can be applied.
Angel documentation CI4 is missing Information 

is valid this?:
PHP Code:
$this->response->setHeader('Pragma: no-cache'); 
Reply
#2

(This post was last modified: 01-14-2021, 08:58 PM by iRedds.)

In my opinion. 
If you set headers in the model, then you are doing something wrong.
The controller should be responsible for setting the headers.

Up
PHP Code:
// In controller 
$this->response->setHeader('Pragma''no-cache'); 

//If you still want to do this in the model
Service::response()->setHeader('Pragma''no-cache'); 

https://codeigniter.com/user_guide/outgo...ng-headers
Reply
#3

(This post was last modified: 01-16-2021, 02:33 PM by yuma2020.)

(01-14-2021, 05:00 PM)iRedds Wrote: In my opinion. 
If you set headers in the model, then you are doing something wrong.
The controller should be responsible for setting the headers.

Up
PHP Code:
// In controller 
$this->response->setHeader('Pragma''no-cache'); 

//If you still want to do this in the model
Service::response()->setHeader('Pragma''no-cache'); 

https://codeigniter.com/user_guide/outgo...ng-headers


This would also be valid for calls from controllers or bookries, I simply consult because due to the great diversity there are many forms of calls, but the most appropriate ones would be great.

Example wants to set this from a helper, a library.

PHP Code:
//If you still want to do this in the model
Service::response()->setHeader('Pragma''no-cache'); 

I clarify this code is the one that works apparently in BaseController:
PHP Code:
$this->response = \Config\Services::response()->setHeader('Pragma''no-cache'); 
Reply
#4

(01-16-2021, 02:20 PM)yuma2020 Wrote: This would also be valid for calls from controllers or bookries, I simply consult because due to the great diversity there are many forms of calls, but the most appropriate ones would be great.

Example wants to set this from a helper, a library.

PHP Code:
//If you still want to do this in the model
Service::response()->setHeader('Pragma''no-cache'); 

I clarify this code is the one that works apparently in BaseController:
PHP Code:
$this->response = \Config\Services::response()->setHeader('Pragma''no-cache'); 

In any class of your application, you can interact with the Response class by getting an instance of it using \Config\Services::response()
But in a controller, an instance of the Response class can also be accessed through the $this->response property. Because this property gets an instance of the Response class when the controller is initialized.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB