MVC图书管理实现上传图片功能?

MVC图书管理实现上传图片功能?,第1张

展开全部

如果只是上传的话那太容易了,如果还要显示那就难了,因为要显示的话就不能只向服务器提交一次请求,必须异步提交。下面的例子是我亲自写的,异步提交上传图片并预览。全部代码都在。

首先建一个html文件,复制以下html文本。使用说明:

引用jquery两个js文件,网上自己搜吧,到处都有。

<script src="jquery-1.4.2.min.js" type="text/javascript"></script>

<script src="jquery.form.js" type="text/javascript"></script>

2.添加两个文本框,第一个ID必须是“bigImage1”,第二个必须是“smallbigImage1”。

<input type="text" name="url1" id="bigImage1" style="width:150px" onclick="selectImage(this)" />

<input type="hidden" name="smallUrl1" id="smallbigImage1" value="" />

当点击第一个文本框时,弹出一个上传窗口,选择一张图片并点“上传”,上传成功后可预览图片。此过程会在服务器上把原图片生成一张缩略图,并把原图URL和缩略图URL一起以JSON格式返回到前台页面,临时显示缩略图。当点击“确定”时,它会把两个URL添加到两个对应ID的文本框。第二个框是隐藏的,给用户的感觉就像是只返回一个URL一样。

如果只是上传的话那太容易了,如果还要显示那就难了,因为要显示的话就不能只向服务器提交一次请求,必须异步提交。下面的例子是我亲自写的,异步提交上传图片并预览。全部代码都在。

首先建一个html文件,复制以下html文本。使用说明:

引用jquery两个js文件,网上自己搜吧,到处都有。

<script src="jquery-1.4.2.min.js" type="text/javascript"></script>

  <script src="jquery.form.js" type="text/javascript"></script>

2.添加两个文本框,第一个ID必须是“bigImage1”,第二个必须是“smallbigImage1”。

<input type="text" name="url1" id="bigImage1" style="width:150px" onclick="selectImage(this)" />

  <input type="hidden" name="smallUrl1" id="smallbigImage1" value="" />

当点击第一个文本框时,弹出一个上传窗口,选择一张图片并点“上传”,上传成功后可预览图片。此过程会在服务器上把原图片生成一张缩略图,并把原图URL和缩略图URL一起以JSON格式返回到前台页面,临时显示缩略图。当点击“确定”时,它会把两个URL添加到两个对应ID的文本框。第二个框是隐藏的,给用户的感觉就像是只返回一个URL一样。

3.请自己写脚本[document.getElementById("bigImage1").value] 获得两个文本框的值,再进行你想做的操作。

4.id为"uploadDiv"的DIV是一个整体,不可分割。主要是提供一个文件类型的表单,用于异步上传。请修改action的URL为你上传的后台路径。

下面是HTML代码

<!DOCTYPE html>

<html>

<head>

    <title>Index</title>

    <script src="jquery-1.4.2.min.js" type="text/javascript"></script>

    <script src="jquery.form.js" type="text/javascript"></script>

    <script type="text/javascript">

        function selectImage(obj) {

            var inputId = obj.id

            document.getElementById('btnSure').setAttribute('inputId', inputId)

            var x = window.event.x

            var y = window.event.y

            var uploadDiv = document.getElementById('uploadDiv')

            uploadDiv.style.left = x + 10 + 'px'

            uploadDiv.style.top = y + 10 + 'px'

            uploadDiv.style.position = 'fixed'

            uploadDiv.style.display = 'inline'

        }

        function closeDiv() {

            document.getElementById('btnSure').style.display = 'none'

            document.getElementById('showImage').style.display = 'none'

            document.getElementById('uploadDiv').style.display = 'none'

        }

        function makeSure(obj) {

            var inputId = obj.getAttribute('inputId')

            document.getElementById(inputId).value = document.getElementById('showImage').getAttribute('big')

            document.getElementById('small' + inputId).value = document.getElementById('showImage').getAttribute('small')

            document.getElementById('image' + inputId).src = document.getElementById('showImage').getAttribute('small')

            document.getElementById("btnSure").style.display = 'none'

            document.getElementById('showImage').style.display = 'none'

            document.getElementById('uploadDiv').style.display = 'none'

        }

        $(function () {

            //异步上传图片

            $('#btnUpload').click(function () {

                if ($('#upImage').val() == '') {

                    alert('请选择一张图片文件')

                    return

                }

                $('#fileForm').ajaxSubmit({

                    success: function (msg) {

                        var strJSON = msg //得到的JSON

                        var image = eval("(" + strJSON + ")") //转换后的JSON对象

                        document.getElementById('uploading').style.display = 'none'

                        $('#showImage').css('display', 'inline')

                        $('#showImage').attr('src', image.big)

                        $('#showImage').attr('big', image.big)

                        $('#showImage').attr('small', image.small)

                        $('#btnSure').css('display', 'inline')

                    }

                })

                document.getElementById('uploading').style.display = 'block'

            })

        })

    </script>

</head>

<body>

    

<p>上传单个文件或图片</p>

<div>

    <input type="text" name="url1" id="bigImage1" style="width:150px" onclick="selectImage(this)" />

    <input type="hidden" name="smallUrl1" id="smallbigImage1" value="" /> 

</div>

<div id="uploadDiv" style="width: 400px height: 280px border: 1px solid #9eb9f1

    background-color: #e1eaea text-align:left display:none z-index:999">

    <div>

        <div style="width: 376px float: left padding-left:4px padding-top:4px padding-bottom:4px overflow:hidden">

            <form id="fileForm" method="post" action="/Home/UploadImage" enctype="multipart/form-data" >

                <input type="file" id="upImage" name="upImage" style="padding-bottom: 1px padding-left: 8px

                    padding-right: 8px height: 24px width:220px padding-top: 1px" />

                <input type="button" id="btnUpload" value="上传" style="padding-bottom: 1px padding-left: 8px padding-right: 8px

                    height: 24px cursor: pointer padding-top: 1px line-height: 12px" />

                <span id="uploading" style="color:#ff0000 display:none font-size:14px font-weight:bold">上传中......</span>

                <input type="button" id="btnSure" value="确定" style="padding-bottom: 1px padding-left: 8px padding-right: 8px

                height: 24px cursor: pointer padding-top: 1px line-height: 12px display:none background-color:#9fd0f9" onclick="makeSure(this)" />

            </form>

        </div>

        <div style="width: 20px height: 30px float: right ">

            <div style="width: 20px height: 20px background-color:#9fc0f7 font-size:20px text-align:center line-height:16px cursor:pointer" onclick="closeDiv()">X</div>

        </div>

    </div>

    <div style="width:398px height:240px text-align:center overflow:hidden ">

        <img id="showImage" alt="预览图片" src="" style="width: 340px display:none" />

    </div>

</div>

</body>

</html>

下面是后台代码

返回到前台页面的JSON格式对象是以类的对象。

    public class ReturnImage

    {

        public string big { get set }

        public string small { get set }

        public string isSuccessfull { get set }

        public string message { get set }

    }

对于上传和生成缩略图,请自行完成,以下是ASP.NET MVC的例子。

    public class HomeController : Controller

    {

        //

        // GET: /Home/

        public ActionResult Index()

        {

            return View()

        }

        /// <summary>

        /// 上传图片

        /// </summary>

        /// <returns></returns>

        public ActionResult UploadImage()

        {

            //定义错误消息

            JsonResult msg = new JsonResult()

            try

            {

                //接受上传文件

                HttpPostedFileBase postFile = Request.Files["upImage"]

                if (postFile != null)

                {

                    DateTime time = DateTime.Now

                    //获取上传目录 转换为物理路径

                    string uploadPath = Server.MapPath("~/UploadFiles/" + time.Year + "/" + time.ToString("yyyyMMdd") + "/")

                    //文件名

                    string fileName = time.ToString("yyyyMMddHHmmssfff")

                    //后缀名称

                    string filetrype = System.IO.Path.GetExtension(postFile.FileName)

                    //获取文件大小

                    long contentLength = postFile.ContentLength

                    //文件不能大于2M

                    if (contentLength <= 1024 * 2048)

                    {

                        //如果不存在path目录

                        if (!Directory.Exists(uploadPath))

                        {

                            //那么就创建它

                            Directory.CreateDirectory(uploadPath)

                        }

                        //保存文件的物理路径

                        string saveFile = uploadPath + fileName + "_big" + filetrype

                        try

                        {

                            //保存文件

                            postFile.SaveAs(saveFile)

                            //保存缩略图的物理路径

                            string small = uploadPath + fileName + "_small" + filetrype

                            MakeThumbnail(saveFile, small, 320, 240, "W")

                            ReturnImage image = new ReturnImage()

                            image.big = "/UploadFiles/" + time.Year + "/" + time.ToString("yyyyMMdd") + "/" + fileName + "_big" + filetrype

                            image.small = "/UploadFiles/" + time.Year + "/" + time.ToString("yyyyMMdd") + "/" + fileName + "_small" + filetrype

                            msg = Json(image)

                        }

                        catch

                        {

                            msg = Json("上传失败")

                        }

                    }

                    else

                    {

                        msg = Json("文件大小超过限制要求")

                    }

                }

                else

                {

                    msg = Json("请选择文件")

                }

            }

            catch (Exception e)

            {

                

            }

            msg.ContentType = "text/html"

            return msg

        }

        /// <summary>

        

        由于回答超过最大限制,/// 生成缩略图 的代码请向我索取

先分析原因。

你出现这个错误是因为你没有了解ASP.NET的工作原理。ASP.Net 和php,jsp ,asp等服务器语言一样 都是为了生成可供浏览器解析的页面,而可供浏览器解析的语言只有HTML。

1,如果你在aspx页面中插入一个asp:LinkButton 那么运行页面后 在浏览器中查看源代码你会发现这个标签实际被转为了一个<a>标签。

2,为什么你的写法不会转换呢?因为首先 传递给Literal1.Text 的值在asp.net中作为一段字符串被直接输出到浏览器中。那么你的写法到浏览器后源代码中仍然是一个asp:LinkButton 标签,而这个标签是无法被浏览器正确解析的。

解决办法:

知道了原因,那么如果非要按照你的写法去写,那么应该是这样的:

Literal1.Text = "<li>" + ((users)Session["users"]).Name.ToString() + "</li><li></li><li><a ID='LinkButton1' onclick='LinkButton1_Click1'>注销</a></li><li></li><li>信息修改</li><li></li>"

但是当你修改完后发现点击注销按钮依然不能执行!为什么呢?

因为你的LinkButton1_Click1 事件并没有在asp.net中被解析为可供浏览器识别的js代码。

如何解决?

在aspx页面中写一个asp:LinkButton按钮:

<asp:LinkButton ID='LinkButton2' runat='server' onclick='LinkButton1_Click1'>注销</asp:LinkButton>

运行页面,查看源代码 看看这个新加的注销按钮被解析为了什么html代码,大概如下

<a id="LinkButton2" onclick="xxxxx"></a>

将新加的linkbutton 设置不可见属性

<asp:LinkButton ID='LinkButton2' runat='server' visible="false" onclick='LinkButton1_Click1'>注销</asp:LinkButton>

重新修改后台代码

Literal1.Text = "<li>" + ((users)Session["users"]).Name.ToString() + "</li><li></li><li><a ID='LinkButton1' onclick='xxxxx'>注销</a></li><li></li><li>信息修改</li><li></li>"

//也就是将标签的js事件绑定到那个隐藏的注销按钮事件上。

希望对你有帮助


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/279968.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-21
下一篇2023-04-21

发表评论

登录后才能评论

评论列表(0条)

    保存