[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
这两个中哪个是get,哪个是post?它用于通用处理程序(.ashx 文件)。
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
这两个中哪个是get,哪个是post?它用于通用处理程序(.ashx 文件)。
ScriptMethod 允许您在 Get 场景中调用方法。否则需要通过 POST 调用
[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 方法