Thinkphp+smarty+uploadify实现无刷新上传
发布:smiling 来源: PHP粉丝网 添加日期:2021-06-14 23:07:57 浏览: 评论:0
这篇文章主要介绍了Thinkphp+smarty+uploadify实现无刷新上传的方法,实例分析了php模板与js上传插件结合实现无刷新上传的相关技巧,需要的朋友可以参考下。
本文实例讲述了Thinkphp+smarty+uploadify实现无刷新上传的方法,分享给大家供大家参考,具体如下:
模板文件代码:
- <!DOCTYPE html>
- <html lang="cn">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link href="<{$smarty.const.PUBLIC_PATH}>/Uploadify/uploadify.css" rel="stylesheet" type="text/css" />
- <script src="<{$smarty.const.PUBLIC_PATH}>/Uploadify/jquery.js" type="text/javascript"></script>
- <script src="<{$smarty.const.PUBLIC_PATH}>/Uploadify/jquery.uploadify.min.js" type="text/javascript"></script>
- </head>
- <script type="text/javascript">
- $(function() {
- $("#file_upload").uploadify({
- //指定swf文件
- 'swf': '<{$smarty.const.PUBLIC_PATH}>/Uploadify/uploadify.swf',
- //后台处理的页面
- 'uploader': "<{U('home/Login/Uploads','',false)}>",
- //按钮显示的文字
- 'buttonText': '上传图片',
- //显示的高度和宽度
- "height" : 30,
- 'fileTypeDesc': 'Image Files',
- //允许上传的文件后缀
- 'fileTypeExts': '*.gif; *.jpg; *.png',
- //发送给后台的其他参数通过formData指定
- //'formData': { 'someKey': 'someValue', 'someOtherKey': 1 },
- "method" : 'post',//方法,服务端可以用$_POST数组获取数据
- 'removeTimeout' : 1,
- "onUploadSuccess" : uploadPicture
- });
- //可以根据自己的要求来做相应处理
- function uploadPicture(file, data){
- var data = eval('(' + data + ')');
- if(data.errorcode){
- alert(data.errormsg);
- } else {
- alert(data.errormsg);
- }
- }
- });
- </script>
- <body>
- <input type="file" name="file_upload" id="file_upload" />
- </body>
- </html>
控制器代码:
- public function uploads(){
- $arr = array( "errorcode"=>"1","errormsg"=>"上传成功!");
- $model = M('applicant');
- if (!emptyempty($_FILES)) {
- //图片上传设置
- $config = array(
- 'maxSize' => 1000000,
- 'rootPath' => 'Public',
- 'savePath' => '/Uploads/',
- 'saveName' => array('uniqid',''),
- 'exts' => array('jpg', 'gif', 'png', 'jpeg'),
- 'autoSub' => false,
- 'subName' => array('date','Ymd'),
- );
- $upload = new \Think\Upload($config);// 实例化上传类
- $info = $upload->upload();
- if($info){
- $arr['errorcode'] = "0";
- } else {
- $arr["errorcode"] = "1";
- $arr["errormsg"] = $upload->getError();
- }
- /* 返回JSON数据 */
- $this->ajaxReturn($arr);
- }
- }
希望本文所述对大家的php程序设计有所帮助。
Tags: Thinkphp+smarty+uploadify
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)