18

我有一个 ajax 请求,它使用“POST”运行良好,但是当使用“GET”时,它给了我以下错误,

{"Message":"An attempt was made to call the method \u0027GetSomething\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"}

所以这是我的代码,在客户端,

function test() {
        $.ajax({
            url: "Default4.aspx/GetSomething",
            type: "GET",
            dataType: "json",
            contentType: "application/json; charset=utf-8",
            success: function (res) { debugger; alert(res.d); },
            error: function (res) { debugger; alert("error"); }
        });
    }

在服务器端,

[WebMethod]
public static string GetSomething()
{
    return "got something";
}

使用“GET”时出现错误的任何原因?

4

3 回答 3

69

如果要使用 GET 调用它,则需要添加:

[WebMethod]
[ScriptMethod(UseHttpGet=true)]
....
于 2012-05-25T10:32:28.240 回答
2

另一种方法:您可以将其添加到配置文件中

<system.web>
    ...
    <webServices>
        <protocols>
              <add name="HttpGet"/>
        </protocols>
    </webServices>
    ...
</system.web>
于 2013-09-19T08:00:59.710 回答
1

您应该在 Web .config 文件中的标记之前添加以下代码。

<location path="webservice.asmx">
  <system.web>
    <webServices>
      <protocols>
        <add name="HttpGet"/>
        <add name="HttpPost"/>
      </protocols>
    </webServices>
  </system.web>
</location>
于 2015-07-08T06:13:35.000 回答