我正在使用canvas進行應用程序開發,並使用CodeIgniter框架。無法在畫布內重定向,CodeIgniter
我有一個觀點,<a href='http://example.com/index.php/module/controller/action'>click here</a>
一個鏈接,我有一個控制器:
public function index() {
$user_profile = $this->facebook->api('/sujeet216');
$token = $this->session->userdata('token');
$response = $this->fb_model->checkUser($token);
if ($response->num_rows <= 0) {
if($this->fb_model->insertUser($user_profile,$token)) {
$this->load->view('intro',$user_profile);
}
}
else {
$this->load->view('index',$user_profile);
}
}
public function intro2() {
$this->load->view('intro2');
}
每當我點擊一個鏈接,它重定向到索引控制器。如何從第二個功能加載intro2
頁面?