• .net mvc 上传头像


    我用的是mvc5  开发环境vs2017 【仅供参考】

    【视图代码】

    <div >
            <img src="@path" alt="@att.Count" id="pic" style="80px;height:80px;border-radius:50%;" />
            <input id="upload" name="file" accept="image/*" type="file" style="display: none">    
    </div>

    【Ajax代码】

    <script>
        $(function () {
            $("#pic").click(function () {
                $("#upload").click(); //隐藏了input:file样式后,点击头像就可以本地上传
                $("#upload").on("change", function () {
                    var objUrl = getObjectURL(this.files[0]); //获取图片的路径,该路径不是图片在本地的路径
                    if (objUrl) {
                        $("#pic").attr("src", objUrl); //将图片路径存入src中,显示出图片
                        upimg();
                    }
                });
            });
        });
    
        //建立一?可存取到?file的url
        function getObjectURL(file) {
            var url = null;
            if (window.createObjectURL != undefined) { // basic
                url = window.createObjectURL(file);
            } else if (window.URL != undefined) { // mozilla(firefox)
                url = window.URL.createObjectURL(file);
            } else if (window.webkitURL != undefined) { // webkit or chrome
                url = window.webkitURL.createObjectURL(file);
            }
            return url;
        }
        //上传头像到服务器
        function upimg() {
            var pic = $('#upload')[0].files[0];
            var file = new FormData();
            file.append('image', pic);
            $.ajax({
                url: "/Staff/Upload?ID=@entityId",
                type: "post",
                data: {file: file },
                cache: true,
                contentType: false,
                processData: false,
                success: function (data) {
                    console.log(data);
                    console.log("ok")
                    var res = data;
                    $("#resimg").append("<img src='/" + res + "'>")
                }
            });
        }
    </script>

    【控制器代码】

     /// <summary>
            /// 上传文件
            /// </summary>
            /// <param name="ID">实体对象id</param>
            /// <param name="fileBase">文件对象</param>
            /// <returns></returns>
            [HttpPost]
            public ActionResult Upload(Int32 ID)
            {
                HttpPostedFileBase file = Request.Files[0];
            }
  • 相关阅读:
    python爬虫常见面试题(二)
    python爬虫常见面试题(一)
    回首2018,展望2019
    PDF编辑软件PDFGuru
    打字机NoisyTyper
    文本标注系统
    logstash配置
    服务器上安装python3
    scrapy自调度方案
    前端项目配置nginx配置
  • 原文地址:https://www.cnblogs.com/shichina/p/10701666.html
Copyright © 2020-2023  润新知