JSON文字列のリストを取得するために、ジェネリックハンドラーにajaxリクエストを作成しています。
$.ajax({
type: "POST",
url: "MyHandler.ashx",
data: "{}",
contentType: "text/plain",
dataType: "text",
success: function (jsonList) {
var myArray = new Arrary();
myArray = jsonList;
var jsonObject1 = JSON.parse(myArray[0]);
}
MyHandler.ashx
public void ProcessRequest (HttpContext context)
{
context.Response.ContentType = "text/plain";
List<string> allstrings = new List<string>();
allstrings = (List<string>)context.Application["allstrings"];
context.Response.Write(allstrings);
}
ここで使用するコンテンツ タイプとデータ タイプがわかりません。リクエストが成功関数に到達することはありません。