我正在使用 AJAX.Net 调用 ASP.Net PageMethod,它返回 JSON 序列化的 JSON 数据
{"d":"[{\"Fromaddress\":\"testfrom1@test.com\",\"Toaddress\":\"testto1@test.com\"},{\"Fromaddress\":\"testfrom2@test.com\",\"Toaddress\":\"testto2@test.com\"}]"}
响应标头将内容类型声明为
"Content-Type application/json; charset=utf-8"
但是,数据只能作为字符串使用,似乎不能作为来自 javascript 的 JSON 数据使用。我需要做什么才能将返回的数据作为来自 javascript 的 JSON 进行处理?