2012-12-11 23 views
0

我從here下載了Rest Client庫,並從here下載了CodeIgniter的Curl庫。在CodeIgniter中使用REST客戶端庫時發生嚴重錯誤

我把這兩個庫放在一個庫文件夾中,並將它們設置在自動加載庫中。

現在,當我嘗試運行下面的代碼:

class Api extends CI_Controller { 

function index() 
{ 
    $this->load->spark('restclient/2.1.0'); 
    $this->load->library('rest', array( 
      'server' => 'my rest service url', 
    )); 
     $data = $this->rest->get(); 
     echo '<pre>'; 
    print_r($data); 
    } 
} 

,我發現了以下錯誤:

Fatal error: Call to undefined method CI_Loader::spark() in /opt/lampp/htdocs/code/application/libraries/Rest.php on line 60 

我在做什麼錯?

回答

相關問題