博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
基于AdminLTE的jquery头像更新
阅读量:6335 次
发布时间:2019-06-22

本文共 1396 字,大约阅读时间需要 4 分钟。

最近在写实验室管理系统中的个人信息模块,上边要求实现更改头像功能。百度了一大堆,无实用的。(要么各种币)

本文介绍的只是实现了简单功能(毕竟现在初学阶段)

需要引用文件,顺序也不能错。

<script src="~/JS/bootstrap/js/jquery.min.js"></script>

<script src="~/JS/bootstrap/js/bootstrap.min.js"></script>
<script src="~/JS/jquery.ui.widget.js"></script>
<script src="~/JS/jquery.iframe-transport.js"></script>
<script src="~/JS/jquery.fileupload.js"></script>

文件链接:http://pan.baidu.com/s/1skH0xnZ

User Avatar

  jQuery

  C#方法

public JsonResult img(HttpPostedFileBase files)        {            try            {                string localPath = "/images";                 string path = Server.MapPath("~" + localPath);                if (!Directory.Exists(path))                {                    Directory.CreateDirectory(path);                }                //TimeSpan ts = DateTime.Now - TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1));                //string fileName = (long)ts.TotalMilliseconds + Path.GetExtension(files.FileName);                string fileName = files.FileName;                files.SaveAs(path + "/" + fileName);                return Json("{\"filePath\":\"" + localPath + "/" + fileName + "\",\"sourePath\":\"" + files.FileName + "\"}");            }            catch (Exception ex)            {                return null;            }        }

 

可以实现简单头像更新。至此

转载于:https://www.cnblogs.com/Tinamei/p/6725946.html

你可能感兴趣的文章
【Magedu】Week01
查看>>
写给MongoDB开发者的50条建议Tip25
查看>>
为什么要让带宽制约云计算发展
查看>>
[iOS Animation]-CALayer 绘图效率
查看>>
2012-8-5
查看>>
VS中ProjectDir的值以及$(ProjectDir)../的含义
查看>>
我的友情链接
查看>>
PHP实现排序算法
查看>>
Business Contact Mnanager for Outlook2010
查看>>
9种用户体验设计的状态是必须知道的(五)
查看>>
解决WIN7下组播问题
查看>>
陈松松:视频营销成交率低,这三个因素没到位
查看>>
vmware nat模式原理探究,实现虚拟机跨网段管理
查看>>
JavaSE 学习参考:集合运算
查看>>
【Signals and Systems】 SYLLABUS
查看>>
RH135-2-command-line-interface
查看>>
浅谈OS
查看>>
mac下开启docker API远程调用
查看>>
tar 命令的详解
查看>>
Cisco路由器安全配置
查看>>