我有一个场景,我让用户在我的网页上选择要上传到他/她的用户个人资料的图像。我正在为我的网站使用 .net 的 MVC3 架构。我需要的是在他选择他想要的图像之后但在我将其存储在数据库中之前,图像显示在页面上。我四处搜寻并最终尝试了这个,我的一个朋友说这对他有用:
在我尝试的视图中:
<div class="floatRight">
<a onclick="opendialogbox('imageLoad2');" style="cursor: pointer">Photo</a>
<img src="… " width="16" height="16" id="imgThumbnail2" alt="photo" />
<input type="file" name="imageLoad2" accept="image/*" id="imageLoad2" onchange="ChangeImage('imageLoad2','#imgThumbnail2')" hidden="hidden" />
</div>
<script type="text/javascript">
function opendialogbox(inputid) {
document.getElementById(inputid).click();
}
function ChangeImage(fileId, imageId) {
var ext = document.getElementById(fileId).value.match(/\.(.+)$/)[1];
switch (ext.toLowerCase()) {
case 'jpg':
case 'bmp':
case 'png':
case 'gif':
case 'jpeg':
{
var myform = document.createElement("form");
myform.style.display = "none";
myform.action = "/ImagePreview/AjaxSubmit";
myform.enctype = "multipart/form-data";
myform.method = "post";
var imageLoad;
var imageLoadParent;
//test browser used then submit form
$(myform).ajaxSubmit({ success:
function (responseText) {
var d = new Date();
$(imageId)[0].src = "/ImagePreview/ImageLoad?a=" + d.getMilliseconds();
if (document.all || is_chrome)//IE
imageLoadParent.appendChild(myform.firstChild);
else//FF
document.body.removeChild(myform);
}
});
}
break;
default:
alert('Error, please select an image.');
}
}
</script>
在控制器中我尝试过:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult AjaxSubmit(int? id)
{
Session["ContentLength"] = Request.Files[0].ContentLength;
Session["ContentType"] = Request.Files[0].ContentType;
byte[] b = new byte[Request.Files[0].ContentLength];
Request.Files[0].InputStream.Read(b, 0, Request.Files[0].ContentLength);
Session["ContentStream"] = b;
HttpPostedFileBase file = Request.Files[0];
string myFilePath = Server.MapPath(Url.Content("~/Content/themes/base/images/Auxiliar.png"));
file.SaveAs(myFilePath);
return Content(Request.Files[0].ContentType + ";" + Request.Files[0].ContentLength);
}
public ActionResult ImageLoad(int? id)
{
byte[] b = (byte[])Session["ContentStream"];
int length = (int)Session["ContentLength"];
string type = (string)Session["ContentType"];
Response.Buffer = true;
Response.Charset = "";
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.ContentType = type;
Response.BinaryWrite(b);
Response.Flush();
Response.End();
Session["ContentLength"] = null;
Session["ContentType"] = null;
Session["ContentStream"] = null;
return Content("");
}
现在我认为这一切都是有道理的,但是当我在我的网站上尝试它时,该方法永远不会到达服务器(我在控制器中两种方法的开头都放置了一个断点)。我还使用了 firefox 的 firebug 来跟踪页面上的脚本,直到它到达该行:
$(myform).ajaxSubmit({ success:
function (responseText) {
var d = new Date();
$(imageId)[0].src = "/ImagePreview/ImageLoad?a=" + d.getMilliseconds();
if (document.all || is_chrome)//IE
imageLoadParent.appendChild(myform.firstChild);
else//FF
document.body.removeChild(myform);
}
});
在这里它继续但从未进入成功条件。我认为页面上包含的 JQuery 版本可能有问题,并注意到我的朋友网站包括:jquery-1.5.1.min.js、jquery-1.3.2.js 和 jquery_form.js
我将这些添加到我的网站(使用 jquery-1.7.2.min.js),但问题仍然存在。不确定包含各种版本的 jquery 是否会导致与方法发生某种冲突,或者问题是否出在其他地方。
对于此事,我将不胜感激。提前致谢。