$.ajax({
type: "POST",url: "@Url.Action("uploadImage","Item")",data: '{ "imageData" : "' + image + '" }',contentType: "application/json; charset=utf-8",dataType: "json",success: function (success) {
alert('Success ' + success.responseText);
},error: function (response) {
alert(response.responseText);
}
});
这是控制器:
[HttpPost]
public ActionResult uploadImage(string imageData)
{
string imageName = Guid.NewGuid().ToString();
try
{
ProductManager pm = new ProductManager();
pm.AddNewProduct(imageName);
}catch(Exception e)
{
writeToLog(e);
}
return Json(new { success = imageName },JsonRequestBehavior.AllowGet);
}
它到达控制器并且AddNewProduct函数成功运行.问题是我希望它返回在控制器中创建的图像名称.这也可以,但是它也会返回我完整的html页面.
我在成功时发出警告,并在发生错误时发生错误,但不知怎的,它总是在错误中出现以下警告:
它显示了我需要的价值,但为什么它也会返回我的完整HTML?
最佳答案
原文链接:https://www.f2er.com/html/425603.html