У меня в контроллере есть метод
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 моего контроллера по ссылке,Это хорошо?Как мне это сделать ?Спасибо