CI中的多个配置休息服务器

时间:2016-07-25 04:09:29

标签: codeigniter rest restful-authentication

我无法在CI中访问多个配置休息服务器..我想要访问2个休息, http://localhost/sia/Rest_serverhttp://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');
}

0 个答案:

没有答案