设为首页
收藏本站
Archiver
用户
登录
入住
用户名
Email
自动登录
找回密码
密码
登录
入住 CI 中国社区
首页
返回 CodeIgniter 中国首页
论坛
BBS
导读
Guide
个人主页
Space
中文手册
搜索
CodeIgniter 搜索引擎
视频教程
案例
任务
搜索
搜索
本版
帖子
用户
设为首页
收藏本站
Archiver
开启辅助访问
切换到宽版
日志
相册
分享
记录
CodeIgniter4
CodeIgniter3
CodeIgniter2
帖子
好友
道具
勋章
收藏
任务
记录
留言板
设置
我的收藏
退出
腾讯QQ
微信登录
CodeIgniter 中国开发者社区
»
论坛
›
CodeIgniter 开发
›
CodeIgniter 问答求助
›
关于文件上传的问题,这样写对不对呢? ...
返回列表
查看:
3464
|
回复:
3
关于文件上传的问题,这样写对不对呢?
[复制链接]
liu1084
liu1084
当前离线
积分
23
IP卡
狗仔卡
发表于 2008-5-6 15:55:31
|
显示全部楼层
|
阅读模式
view:
------------------------------------
<?=form_open_multipart('center/becometgmember/iBecometgmember');?>
<div>
<div>
<label for="cardid_pic">idcard:</label>
<input type="file" name="cardid_pic" id="cardid_pic" />
</div>
<div>
<input type="submit" name="Submit" value="提交申请" />
</div>
</form>
controller:
---------------------------
$cardid_pic = $this->input->post('cardid_pic');
//将文件上传到服务器
$data_result['result_upload'] = $this->becometgmember_model->UploadFile($cardid_pic);
model:
-----------------------------------
function UploadFile($cardid_pic){
$config['upload_path'] = './images/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '200';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$config['encrypt_name'] = TRUE;
$config['remove_spaces'] = TRUE;
$this->load->library('upload',$config);
print_r($this->upload->do_upload());
if ($this->upload->do_upload()){
foreach ($this->upload->data() as $v){
$data['file_type'] = $v->file_type;
$data['raw_name'] = $v->raw_name;
$data['orig_name'] = $v->orig_name;
$data['file_size'] = $v->file_size;
$data['image_width'] = $v->image_width;
$data['image_height'] = $v->image_height;
}
return $data;
}else{
return FALSE;
}
}
错误提示:
----------------------
You did not select a file to upload.
问题:
------------------------
怎么才能将选择的文件传递到model中?post好像不行。
回复
使用道具
举报
提升卡
置顶卡
沉默卡
喧嚣卡
变色卡
千斤顶
显身卡
ackiae86
ackiae86
当前离线
积分
58
IP卡
狗仔卡
头像被屏蔽
发表于 2008-5-11 20:15:14
|
显示全部楼层
提示:
作者被禁止或删除 内容自动屏蔽
回复
支持
反对
使用道具
举报
显身卡
judy_zyzyx
judy_zyzyx
当前离线
积分
99
IP卡
狗仔卡
发表于 2008-5-12 21:42:13
|
显示全部楼层
你的文件域的name错了,应该是userfile
你的文件域的name错了,应该是userfile,如果你在Upload类里改过了,就不是这个问题;如果没改,那么就是你的文件域的name错了,
回复
支持
反对
使用道具
举报
显身卡
gz123
gz123
当前离线
积分
11
IP卡
狗仔卡
发表于 2008-5-23 11:54:43
|
显示全部楼层
$cardid_pic = $this->input->post('cardid_pic');
//将文件上传到服务器
$data_result['result_upload'] = $this->becometgmember_model->UploadFile($cardid_pic);
这些没必要。设置
$field_name = "cardid_pic";
$this->upload->do_upload($field_name);
回复
支持
反对
使用道具
举报
显身卡
返回列表
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
入住 CI 中国社区
本版积分规则
发表回复
回帖后跳转到最后一页