这是一个MVC3应用程序我对我的操作有以下
JavaScript调用:
function editDescription(docId,fileName,fileDescription) { $.ajax({ type: "POST",url: "/OrderDetail/LoadModelData",contentType: "application/json; charset=utf-8",data: "{'id': '"+docId +"','filename': '"+fileName+"','description': '"+fileDescription+"'}",dataType: "json",success: function (result) { alert("ok: "+ result.d); },error: function (result) { alert('Oh no: '+ result.responseText); } });
尊重我的行为:
[HttpPost] public string LoadModelData(string id,string filename,string description) { return filename; }
我运行代码,动作被调用参数,没有任何东西是空的,但每次都调用错误函数.所以每次都会出现“哦不”的警报框,但从动作返回的字符串是正确的.如果文件名是test.pdf,错误提示框说
'Oh No: test.pdf'.
解决方法
您期待(返回)您的动作方法中的字符串值.为什么要将数据类型指定为json?删除,看看会发生什么.并没有回应的d财产!所以只是使用结果在警报.
$.ajax({ type: "POST",contentType:"application/json; charset=utf-8",data: JSON.stringify({ id: docId,filename: fileName,description: fileDescription }),success: function (result) { alert("ok: "+ result); },error: function (result) { alert('Oh no: '+ result.responseText); } });
datatype属性告诉服务器,客户端期望什么样的内容作为结果.
编辑:正如Darin所提到的,请使用JSON.stringify方法构建JSON请求.更新此答案以包括未来访客的正确方式.