JS方法
$.post('http://localhost:21067/HandlerServices/Product/ProductHandler.ashx', 'action=productlist', function (data) { console.log(data); console.log('hi') });
此 ashx 代码正在运行,但我没有收到任何回应
这是 ashx.cs 代码
context.Response.ContentType = "text/plain";
if (!string.IsNullOrEmpty(context.Request.QueryString["action"]))
{
string action = context.Request.QueryString["action"];
switch (action.ToLower())
{
case "productlist":
context.Response.Write("ersoy");
break;
}
}
我有查询 1.9.0 版本。作为响应标签没有出现任何东西。在我多次使用它之前,但现在我无法理解错误在哪里。