从视图中调用控制器方法

时间:2012-03-20 15:24:54

标签: php javascript codeigniter

我的控制器中有一个方法

public function download($filepath){

$download_path = $_SERVER['DOCUMENT_ROOT']. "mediabox/import";
$file = $download_path + $filepath ;

if(!$file) die("I'm sorry, you must specify a file name to download.");
if(eregi("\.ht.+", $file)) die("I'm sorry, you may not download that file.");
if(!file_exists($file)) die("I'm sorry, the file doesn't seem to exist.");
$type = filetype($file);

    header("Content-type: $type");
header("Content-Disposition: attachment;filename=$filename");
header('Pragma: no-cache');
header('Expires: 0');
    // Send the file contents.
readfile($file);

}

在我看来,我有一个链接

<a target='_blank' class='download_dialog' onClick="???">

我想调用链​​接的控制器onclick事件的下载方法。 这样做好吗? 我该怎么做 ? 感谢

3 个答案:

答案 0 :(得分:2)

你可以尝试:

<a target='_blank' class='download_dialog' href="<?php echo base_url();?>YourControllerName/download">

(是的,您需要使用base_url的url帮助程序)或在某些javascript onClick调用中使用该url,但我不确定这是否是最适合您的解决方案。

答案 1 :(得分:0)

答案 2 :(得分:0)

请查看使用AJAX调用。网上有一些很好的资源,其中之一是:

http://www.switchonthecode.com/tutorials/simple-ajax-php-and-javascript