我无法在CI中访问多个配置休息服务器..我想要访问2个休息,
http://localhost/sia/Rest_server
和http://localhost/sia/Rest_physics
。
但我不知道如何在一个控制器中访问其余的服务器。
这是代码:
public function __construct(){
parent::__construct();
$this->load->library('rest');
$config = array('server' => 'http://localhost/sia/Rest_server/');
$this->rest->initialize($config);
}
public function inputMhs($jurusan = NULL){
if (!in_array ($jurusan, array ('ilkom', 'fisika'))){
show_404();
return;
}
$this->load->view('admin/header');
$data['jurusan'] = $jurusan;
$data['data'] = $this->rest->get('ambilmhs', 'json');
$this->load->view('admin/v_inputmhs',$data);
$this->load->view('admin/footer');
}