1
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]

这两个中哪个是get,哪个是post?它用于通用处理程序(.ashx 文件)。

4

2 回答 2

1

ScriptMethod 允许您在 Get 场景中调用方法。否则需要通过 POST 调用

MSDN

于 2012-01-25T01:03:45.983 回答
0
[WebMethod]
[ScriptMethod(UseHttpGet = true/false, ResponseFormat = ResponseFormat.Json)]
public bool UseHttpGet { set; get; }
Member of System.Web.Script.Services.ScriptMethodAttribute

摘要:获取或设置一个值,该值指示是否使用HTTP GET 调用方法。

返回:如果使用 HTTP GET 命令调用该方法,则返回 true;如果使用 HTTP POST 命令调用该方法,则为 false。默认值为假。

我们可以同时创建 get 和 post 方法

于 2012-01-25T07:42:58.337 回答