Jquery上传图片提交到一般处理程序中返回图片路径
上传图片,在一般处理程序种获取不到file贴代码:aspx中:<inputtype="file"onchange="GetImgPicture();"runat="ser...
上传图片,在一般处理程序种获取不到file
贴代码:
aspx中:
<input type="file" onchange="GetImgPicture();" runat="server" id="uploadify" name="uploadify" />
js
function GetImgPicture() {
if ($('#uploadify').val() == "") {
alert("请选择上传图片!"); return false;
}
$.ajax({
url: '/Ashx/UserCenterHandler.ashx?ajaxMethod=uploadpicture',
data: null,
type: 'post',
success: function (data) {
if (data != null) {
}
},
error: function (data) {
}
});
}
以上可以进入 uploadpicture 方法中
但是在 UserCenterHandler.ashx中
HttpPostedFile file = context.Request.Files["uploadify"];
file为null
网上说需要在form上添加method="post" enctype="multipart/form-data" 已经添加
<form id="Form1" runat="server" method="post" enctype="multipart/form-data">
在file上添加 runat="server"
也已经添加
以上,求大神解答。。非常感谢! 展开
贴代码:
aspx中:
<input type="file" onchange="GetImgPicture();" runat="server" id="uploadify" name="uploadify" />
js
function GetImgPicture() {
if ($('#uploadify').val() == "") {
alert("请选择上传图片!"); return false;
}
$.ajax({
url: '/Ashx/UserCenterHandler.ashx?ajaxMethod=uploadpicture',
data: null,
type: 'post',
success: function (data) {
if (data != null) {
}
},
error: function (data) {
}
});
}
以上可以进入 uploadpicture 方法中
但是在 UserCenterHandler.ashx中
HttpPostedFile file = context.Request.Files["uploadify"];
file为null
网上说需要在form上添加method="post" enctype="multipart/form-data" 已经添加
<form id="Form1" runat="server" method="post" enctype="multipart/form-data">
在file上添加 runat="server"
也已经添加
以上,求大神解答。。非常感谢! 展开
2个回答
展开全部
data:null
传递给服务器的数据为空,当然没有接收到文件数据。
上传文件时一般使用ajaxFileUpload方法。
传递给服务器的数据为空,当然没有接收到文件数据。
上传文件时一般使用ajaxFileUpload方法。
追问
ajaxFileUpload 这个插件吗?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$.ajax({
url: '/Ashx/UserCenterHandler.ashx?ajaxMethod=uploadpicture',
data: null,
type: 'post',
你的data: null,你没有任何数据传到你的后台啊,当然为空了,你可以试试data:$("#form1").serialize()
url: '/Ashx/UserCenterHandler.ashx?ajaxMethod=uploadpicture',
data: null,
type: 'post',
你的data: null,你没有任何数据传到你的后台啊,当然为空了,你可以试试data:$("#form1").serialize()
追问
百度有bug,我这个问题还没解决,就莫名奇妙的给别人最佳回答了。。郁闷。
这个方法试过了,还是不行啊
追答
这个解决了没?没有的话就到ui3g.com网站,加群问我,或者直接加koukou:1021459855
个性签名:自在生活,创意生活 www.qingkezu.com
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询