3

我的客户端脚本中有一个 Web 方法 GetNextImage。在 ASPX 页面中,我有以下代码。

function slideshow() {
  $.ajax({
    type: "GET",
    contentType: "application/json; charset=utf-8",
    url: "/RollingScreen.aspx/sample",
    dataType: "json",
    data: "{}",
    success: function (data) {
      //this changes the image on the web page
      $('#imgSlideShow').attr("src","~/Images/1.png");

      //fires another sleep/image cycle
      setTimeout(slideshow(), 5000);
    },
    error: function (result) {
      alert(result.message);
    }
  });
}

$(document).ready(function () {
  //Kicks the slideshow
  slideshow();
});

我收到如下错误。

{"Message":"An attempt was made to call the method \u0027GetNextImage\u0027 using a GET request, which is not allowed.","StackTrace":" at System.Web.Script.Services.RestHandler.GetRawParams(WebServiceMethodData methodData, HttpContext context)\r\n at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.InvalidOperationException"} 

请任何人都可以帮助我。提前致谢。

4

1 回答 1

4

向您的 WebMethod 添加属性以指示使用 HTTP GET。

[WebMethod(EnableSession = true)]
[System.Web.Script.Services.ScriptMethod(UseHttpGet = true, ResponseFormat = System.Web.Script.Services.ResponseFormat.Json)]
public static string sample()
{
   //Your Code Which Gets Next Image 
}

您不应该使用 POST 而不是 GET。

“POST 请求不能添加书签、发送电子邮件或以其他方式重复使用。它们使用浏览器的后退/前进按钮搞砸了正确的导航。只能在一个独特的操作中使用它们将数据发送到服务器,并且(通常)有服务器通过重定向回答。” - deceze(使用 POST 而不是 GET 有什么不好的地方吗?

于 2015-10-05T11:30:58.390 回答