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 バージョンがあります。応答タグには何も表示されません。以前は何度も使用していましたが、今ではバグがどこにあるのかわかりません。