|
使用CI 中的文件上传类时将上传文件的URI指定为Model中的方法。
<?php echo form_open_multipart('Request_new_interviewModel/do_upload');?>
<input class="file1" type="file" name="userfile" size="20" class="browse_button" />
<input type="submit" value="" class="upload_button"/>
在controller的构造方法中也加载了model
function __construct()
{
$this->load->model('Request_new_interviewModel');
}
但是点击上传按钮后页面错误提示:
404 Page Not Found
The page you requested was not found.
请高手指点!!!
是在view 中不能直接调用model 中方法吗? |
|