我有以下网络服务:
[ScriptService]
public class Handler : WebService {
[WebMethod]
public void method1() {
string json = "{ \"success\": true }";
System.Web.HttpContext.Current.Response.Write(json);
}
[WebMethod]
public object method2(Dictionary<string, object> d) {
Dictionary<string, object> response = new Dictionary<string, object>();
response.Add("success", true);
return response;
}
}
第一种方法接受传统的html表单帖子,响应将JSON字符串写入页面。第二种方法接受通过AJAX发布的JSON值并返回一个序列化对象。
这两种方法都可以自行运行,但是当它们放在同一个Web服务中时,我在调用method1时遇到了这个错误:
System.IndexOutOfRangeException: Index was outside the bounds of the array.
当我从method2中删除参数时,它们可以工作。
有谁能说明为什么会这样?
修改
问题跨越了method2的参数类型。如果我将其更改为字符串或简单数据类型,它可以正常工作。正如乔尔所暗示的那样,可能是因为字典无法序列化。这似乎不会影响我的ajax发送的请求,只会将直接表单帖子分解为此处理程序。因此,我的解决方法是将表单后处理程序单独放在一个单独的文件中。不理想,但适用于我的应用程序。
答案 0 :(得分:4)
字典不可序列化。将它隐藏在对象后面对你没有任何作用。在发送之前,必须首先将字典转换为数组或其他可序列化对象。
Why isn't there an XML-serializable dictionary in .NET? http://weblogs.asp.net/pwelter34/archive/2006/05/03/444961.aspx http://www.tanguay.info/web/index.php?pg=codeExamples&id=333